aboutsummaryrefslogtreecommitdiff
path: root/examples/working/fib.ey
diff options
context:
space:
mode:
authorDrahflow <drahflow@gmx.de>2012-12-30 14:39:45 +0100
committerDrahflow <drahflow@gmx.de>2012-12-30 14:39:45 +0100
commit047fb919e7a08c7daa5ec4581fc5ab8cf5f25a6f (patch)
tree9e9fac15c1e2c0714467048ae52a90344b9f4522 /examples/working/fib.ey
parentd74d19aee738ba60f584899e9530e9aa98845be2 (diff)
-, _, * now normal functions
Diffstat (limited to 'examples/working/fib.ey')
-rw-r--r--examples/working/fib.ey6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/working/fib.ey b/examples/working/fib.ey
index 96e8b38..ad4f38c 100644
--- a/examples/working/fib.ey
+++ b/examples/working/fib.ey
@@ -3,10 +3,10 @@
{ ? * } /if deff
{
- _0 0 eq _1 1 eq add
- { - 1 }
+ _ 0 eq -101 1 eq add
+ { -- 1 }
{
- _0 1 sub "fib" | *
+ _ 1 sub "fib" | *
-01 2 sub "fib" | *
add
}