about summary refs log tree commit diff stats
path: root/awk/vm/test.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'awk/vm/test.coffee')
-rw-r--r--awk/vm/test.coffee7
1 files changed, 7 insertions, 0 deletions
diff --git a/awk/vm/test.coffee b/awk/vm/test.coffee
new file mode 100644
index 0000000..aecda14
--- /dev/null
+++ b/awk/vm/test.coffee
@@ -0,0 +1,7 @@
+# Calculate sum
+x = 5
+y = 3
+z = x + y
+
+# Double it
+result = z * 2