summaryrefslogtreecommitdiff
path: root/test/test.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.test')
-rw-r--r--test/test.test10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/test.test b/test/test.test
index 44580c7..5bbd0c0 100644
--- a/test/test.test
+++ b/test/test.test
@@ -1,6 +1,6 @@
-function henshin(hen: integer, shin: integer): void {
- const x: integer = 2
- const b: string = x
+const henshin: integer = 2; // comment
+// next comment
+var ply: string = "cool!";
+ply = "way cooler!!";
- return b
-}
+const new: integer = henshin * 5 + 10;