6 lines
126 B
Plaintext
Raw Normal View History

2020-02-19 11:51:49 +01:00
// Test while loops in PascaLIGO
2020-03-06 23:44:28 +01:00
let rec fibo ((n,acc):int * int) : int =
2020-02-19 11:51:49 +01:00
if (n < 1) then acc
2020-03-06 23:44:28 +01:00
else fibo (n-1, acc+n)