summaryrefslogtreecommitdiff
path: root/tnslc/tnslc.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-03-26 01:37:12 -0400
committerKyle Gunger <kgunger12@gmail.com>2024-03-26 01:37:12 -0400
commit5ff4734f6b8fe64ac64ae55e1afa9d8ff8860ee4 (patch)
tree3f6efce2d88a87aaa15ee2caee29238b81211b73 /tnslc/tnslc.tnsl
parent8a89427dc5da5b0c728da49d34848ea4741dc35f (diff)
Hello world
Diffstat (limited to 'tnslc/tnslc.tnsl')
-rw-r--r--tnslc/tnslc.tnsl17
1 files changed, 17 insertions, 0 deletions
diff --git a/tnslc/tnslc.tnsl b/tnslc/tnslc.tnsl
index 56623b7..f9b26c7 100644
--- a/tnslc/tnslc.tnsl
+++ b/tnslc/tnslc.tnsl
@@ -11,6 +11,23 @@
utils.Vector vec
vec.init(1)
+
+ vec.push_char('h')
+ vec.push_char('e')
+ vec.push_char('l')
+ vec.push_char('l')
+ vec.push_char('o')
+ vec.push_char(' ')
+ vec.push_char('w')
+ vec.push_char('o')
+ vec.push_char('r')
+ vec.push_char('l')
+ vec.push_char('d')
+ vec.push_char('\n')
+ vec.push_char(0)
+
+ _printf(vec.data)
+
vec.end()
return 0