about summary refs log tree commit diff stats
path: root/awk/vm/stack_test.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'awk/vm/stack_test.coffee')
-rw-r--r--awk/vm/stack_test.coffee15
1 files changed, 15 insertions, 0 deletions
diff --git a/awk/vm/stack_test.coffee b/awk/vm/stack_test.coffee
new file mode 100644
index 0000000..ab29e63
--- /dev/null
+++ b/awk/vm/stack_test.coffee
@@ -0,0 +1,15 @@
+# First store 5 in memory location 0
+x = 5
+SHOW
+
+# Then store 3 in memory location 1
+y = 3
+SHOW
+
+# Add them: load 5, load 3, add them
+z = x + y
+SHOW
+
+# Double z: load 8, multiply by 2
+result = z * 2
+SHOW 
\ No newline at end of file