-
Notifications
You must be signed in to change notification settings - Fork 2
Hello, World!
iaminfinityiq edited this page Mar 15, 2026
·
7 revisions
A Hello, World! program is a program that basically prints Hello, World! to the console. This is used to test if you installed a language correctly. In tix, it is written like this:
const module io = get "io";
io.logln("Hello, World!");Alternatively, the Hello, World! program can also be rewritten as a one-liner like this:
(get "io").logln("Hello, World!");To run, read How to use Tix? and follow the instructions. Redirect to these links to learn more about how this code works: