index
:
parscan
fix-untyped-assign
main
parscan-struct
experimental interpreter
marc
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
samples
/
fib
blob: 03545d354bfb63393e0cc7f50e5187b6b9f53dfb (
plain
)
1
2
3
4
5
6
func fib(i int) int { if i < 2 { return i } return fib(i-2) + fib(i-1) } println(fib(5))