Fonction rapide avec valeur de retour2

func square(number: Int) -> Int {
    return number * number
}
Fancy Flatworm