Hello World in Yoix

Published on 19 June 2023 (Updated: 20 June 2023)

Welcome to the Hello World in Yoix page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

import yoix.stdio.printf;

printf("Hello, World!\n");

Hello World in Yoix was written by:

This article was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

Yoix requires you to import every system function that you use. All the import statements start with yoix, followed by the module where the function is located, followed by the function name. Since printf is in the stdio module, the import statement is yoix.stdio.printf. The printf statement is same as Java, which is not surprising since the Yoix interpreter runs in Java.

How to Run the Solution

You can download a copy of Yoix JAR file to your local machine, grab a copy of Hello World in Yoix, and then run this:

java -jar yoix.jar hello_world.yx