QSX is a language for mathematics

the commentary code is like Python #

NOTE: for now QSX support the 4 operations arithmetic (+,-,*,/)

QSX is accompanied with a virtual machine like Java (VMS is a virtual machine for QSX)

QSXC (QSX compiler) is just used to translate the QSX code into bytecode for the VMS

basic code example in QSX

.start {
        10 + 10.
    }
    .end