summaryrefslogtreecommitdiffstats
path: root/samples/variables.sample
diff options
context:
space:
mode:
Diffstat (limited to 'samples/variables.sample')
-rw-r--r--samples/variables.sample13
1 files changed, 0 insertions, 13 deletions
diff --git a/samples/variables.sample b/samples/variables.sample
deleted file mode 100644
index 8902b04..0000000
--- a/samples/variables.sample
+++ /dev/null
@@ -1,13 +0,0 @@
--- store foo = 10
-10 $foo !
-
--- load and print foo
-$foo ?
-
--- print 1 + value at foo
-1 $foo @ + .
-
--- define x * 2 = x + x
-define *2 dup + ;
-
-666 *2 .