## lastruneprog ### Instructions Write a program that receives a `string` and returns the last `rune` of a `string`. ### Expected output : ```console student@ubuntu:~/piscine-go/firstruneprog$ go build student@ubuntu:~/piscine-go/firstruneprog$ ./firstruneprog "this is not happening" g student@ubuntu:~/piscine-go/firstruneprog$ ./firstruneprog "hello" | cat -e o$ student@ubuntu:~/piscine-go/firstruneprog$ ./firstruneprog "this" "is" "not" "happening" student@ubuntu:~/piscine-go/firstruneprog$ student@ubuntu:~/piscine-go/firstruneprog$ ./firstruneprog student@ubuntu:~/piscine-go/firstruneprog$ ```