Fonction d'interface utilisateur rapide avec valeur de retour

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