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

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