Skip to content

Hello, World!

iaminfinityiq edited this page Mar 15, 2026 · 7 revisions

Hello, World!

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:

  1. Data types
  2. Strings
  3. Modules

For Tix's built-in modules, please refer here.

Clone this wiki locally