From 5ff4734f6b8fe64ac64ae55e1afa9d8ff8860ee4 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Tue, 26 Mar 2024 01:37:12 -0400 Subject: Hello world --- tnslc/tnslc.tnsl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'tnslc/tnslc.tnsl') 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 -- cgit v1.2.3