## lastruneprog
### Instructions
Write a function that returns the last `rune` of a `string`.
### Expected function
```go
func LastRune(s string) rune {
}
```