## nrune ### Instructions Write a function that returns the nth `rune` of a `string`. ### Expected function ```go func NRune(s string, n int) rune { } ``` ### Note Remember to submit a main function testing the function