The Qo Programming Language

The Qo Programming Language is a simple language with simple syntax.

/*
Printing in QoLang.
*/

println("Hello, world!");
The Qo Programming Language (or shortly, QoLang) is a new interpreted language with a simple syntax.
A simple example:
      
include types;
myinteger = types.toInt(input("Enter an integer: "));
println(myinteger, "% 2 ==", myinteger % 2);
      
    
Every statement in QoLang (including statements like if) end with ;.
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.