Funkcja Swift z wartością zwracającą 2

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