aboutsummaryrefslogtreecommitdiff
path: root/forth/forth/ct-test.fs
diff options
context:
space:
mode:
Diffstat (limited to 'forth/forth/ct-test.fs')
-rw-r--r--forth/forth/ct-test.fs22
1 files changed, 22 insertions, 0 deletions
diff --git a/forth/forth/ct-test.fs b/forth/forth/ct-test.fs
new file mode 100644
index 0000000..6837d87
--- /dev/null
+++ b/forth/forth/ct-test.fs
@@ -0,0 +1,22 @@
+\ USAGE EXAMPLE
+: ?9 dup 9 = ;
+: ?6 dup 6 = ;
+: .9 ." nine" cr ;
+: .6 ." six" cr ;
+' .6 ' ?6 ' .9 ' ?9
+2 flash ct test ram
+
+\ WITH noname:
+
+:noname ." default" cr ;
+' true
+:noname ." six" cr ;
+:noname dup 6 = ;
+:noname ." nine" cr ;
+:noname dup 9 = ;
+3 flash ct testnoname
+
+6 test
+6 testnoname
+.
+.