A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
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.
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.
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.
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