## compare ### Instructions Écrire une fonction qui se comporte comme la fonction [`Compare`](https://golang.org/pkg/strings/#Compare). ### Fonction attendue ```go func Compare(a, b string) int { } ``` ### Utilisation Voici un éventuel [programme](TODO-LINK) pour tester votre fonction : ```go package main import ( "fmt" piscine ".." ) func main() { fmt.Println(piscine.Compare("Hello!", "Hello!")) fmt.Println(piscine.Compare("Salut!", "lut!")) fmt.Println(piscine.Compare("Ola!", "Ol")) } ``` Et son résultat : ```console student@ubuntu:~/piscine-go/test$ go build student@ubuntu:~/piscine-go/test$ ./test 0 -1 1 student@ubuntu:~/piscine-go/test$ ```