The Qo Programming Language is a simple language with simple syntax.
/*
Printing in QoLang.
*/
println("Hello, world!");
include types;
myinteger = types.toInt(input("Enter an integer: "));
println(myinteger, "% 2 ==", myinteger % 2);
QoLang is a pretty new language, with too few contributors, so it may have some bugs. If you notice something is wrong with QoLang,
please create an issue in GitHub.
Use the installer.
qolang under C:\, then copy the executable file you just downloaded to that folder. qo.exe file because .exe files are the executable files for Windows.libs under C:\qolang\, then copy all files in libs directory to that folder.cmd.exe as Administrator, and run setx PATH "%PATH%;C:\qolang"test.qo and write the following code in it:
println("Hello, world!");
After saving the file, copy the path the file is in, eg. C:\Users\user. Press Windows Key + R and type
cmd, type cd (with the space after cd) and click right mouse button the paste the clipboard content, and press Enter.
Now you can run your file, to do it run qo test.qoQoLang currently doesn't have support for other operating systems, so you need a GNU/Linux virtual machine (or WSL on Windows) to run QoLang.