public/subjects/lastrune
Clement Denis 26b3a37cc0 move subjects to folders 2020-06-16 19:22:03 +02:00
..
README.md move subjects to folders 2020-06-16 19:22:03 +02:00

README.md

lastrune

Instructions

Write a function that returns the last rune of a string.

Expected function

func LastRune(s string) rune {

}

Usage

Here is a possible program to test your function :

package main

import (
	"github.com/01-edu/z01"

	piscine ".."
)

func main() {
	z01.PrintRune(piscine.LastRune("Hello!"))
	z01.PrintRune(piscine.LastRune("Salut!"))
	z01.PrintRune(piscine.LastRune("Ola!"))
	z01.PrintRune('\n')
}

And its output :

student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
!!!
student@ubuntu:~/[[ROOT]]/test$