Kind/book/U60/sum.kind2
2024-07-05 10:06:49 -03:00

6 lines
70 B
Plaintext

sum (n: U48) : U48 =
switch n {
0: 0
_: (+ n (sum n-1))
}