Função rápida com o valor de retorno9

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