diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-01-07 02:24:19 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-01-07 02:24:19 +0400 |
commit | 180b6ab7c204ddf3a8aa2b9b022085e6a96ff99a (patch) | |
tree | afb0144af0ba75d516e100d1fc6fa0c309620c0e /examples/fib.gorth | |
parent | c9090da5bd98c418f71f9110c6c3d82f2f7d37ee (diff) |
program name changed to 'ash'
Diffstat (limited to 'examples/fib.gorth')
-rw-r--r-- | examples/fib.gorth | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/fib.gorth b/examples/fib.gorth deleted file mode 100644 index bf2b90d..0000000 --- a/examples/fib.gorth +++ /dev/null @@ -1,16 +0,0 @@ -# Print out given number of elements in the Fibonacci sequence, 46 is the max value -define fib - var lim push lim - var a 1 push a - var b 1 push b - pull lim while dup 0 > do - pull a dump - pull b dup - pull a - + push b - push a - 1 - - done -end - -10 fib |