aboutsummaryrefslogtreecommitdiff
path: root/fibonacci.hgn
blob: 00c0638fde971fa61f3e3df8ac7f0e1a2e9cad99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
let a = 0
let b = 1
let n = read_int(0)
while n > 0 {
    let c = a + b
    a = b
    b = c
    n = n - 1
}
print(a)