Swift UI -функция с возвращающим значением

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