summaryrefslogtreecommitdiffstats
path: root/samples/variables.sample
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-02-18 09:39:53 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-02-18 09:39:53 +0200
commitdc1ef25f1a7f8e36e93928e5b0288e203833e14a (patch)
treeb2baa429efd629e55bcd8455a5e46be198d2eba1 /samples/variables.sample
parent7a6dc3758c361aa7685934a1896db9f23f1d74be (diff)
Clean up
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 .