mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-14 13:40:10 +00:00
7 lines
144 B
Smalltalk
7 lines
144 B
Smalltalk
#
|
|
# Fibonacci Algorithm in Stacker.
|
|
#
|
|
: print >d CR;
|
|
: fibonacci RROT DUP2 + print 3 PICK -- ;
|
|
: MAIN 0 print 1 print 44 WHILE fibonacci END ;
|