summaryrefslogtreecommitdiff
path: root/sandbox/hello2.lua
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/hello2.lua')
-rw-r--r--sandbox/hello2.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/sandbox/hello2.lua b/sandbox/hello2.lua
new file mode 100644
index 0000000..bcbc1e0
--- /dev/null
+++ b/sandbox/hello2.lua
@@ -0,0 +1,7 @@
+local a = 1;
+local b = 2;
+print(a, b);
+
+function c(a, b)
+ return a + b
+end \ No newline at end of file