summaryrefslogtreecommitdiff
path: root/test/test.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.test')
-rw-r--r--test/test.test9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test.test b/test/test.test
index 5e3f420..2ffe743 100644
--- a/test/test.test
+++ b/test/test.test
@@ -6,3 +6,12 @@ ply = "way cooler!!";
const new: integer = henshin * 5 + 10;
const test: integer = 1 + 1;
+
+function main(input: string): void {
+ const hello: string = "world!";
+ const bye: string = "bye!";
+
+ return hello;
+}
+
+main(test);