aboutsummaryrefslogtreecommitdiff
path: root/examples/hylo/default.hylo
blob: 00dc2e53a0e76ecfa64b983921a01c1b70899121 (plain)
1
2
3
4
5
6
7
public fun factorial(_ n: Int) -> Int {
  if n < 2 { 1 } else { n * factorial(n - 1) }
}

public fun main() -> Int32 {
  Int32(factorial(5))
}