función rápida con valor de retorno9

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