summaryrefslogtreecommitdiff
path: root/tnslc/tnslc.tnsl
diff options
context:
space:
mode:
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