about summary refs log tree commit diff stats
path: root/awk/vm/simple_test.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'awk/vm/simple_test.coffee')
-rw-r--r--awk/vm/simple_test.coffee8
1 files changed, 8 insertions, 0 deletions
diff --git a/awk/vm/simple_test.coffee b/awk/vm/simple_test.coffee
new file mode 100644
index 0000000..8fec5ba
--- /dev/null
+++ b/awk/vm/simple_test.coffee
@@ -0,0 +1,8 @@
+x = 5
+SHOW
+y = 3
+SHOW
+z = x + y  # Should be 8
+SHOW
+result = z * 2  # Should be 16
+SHOW 
\ No newline at end of file