## firstrune ### Instructions Write a function that returns the first `rune` of a `string`. ### Expected function ```go func FirstRune(s string) rune { } ``` ### Note Remember to submit a main function testing the function