## firstruneprog
### Instructions
Write a function that returns the first `rune` of a `string`.
### Expected function
```go
func FirstRune(s string) rune {
}
```