diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test.test | 9 |
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); |