repo.or.cz
/
unleashed
/
tickless.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
8322 nl: misleading-indentation
[unleashed/tickless.git]
/
usr
/
src
/
common
/
ficl
/
test
/
fib.fr
blob
b786d0ee02612edcd8e28f05b5418b932a3ce3af
1
: fib ( n1 -- n2 )
2
dup 1 > if
3
dup
4
1- recurse
5
swap 2 - recurse
6
+
7
then ;
8
9
10
35 value nfibs
11
: fibtest nfibs fib . cr ;