An interpreted programming language
Run build.bat (Makefile will be added soon)
Uses Mingw-w64
Should work with other versions of Mingw if they support the following libraries:
- vector
$(variable_name) - declare variable
@(label_name) - define a label
(variable) : (type) - set the datatype of a variable
(function) : (type) - set the return type of a function (use void to return nothing)
; - end a line
'# Comment #' - Comment
Function main : int (void) { return(0); # return 0 # }
Function print : void ($text) { output(0, text); }
Function main : int (void) { print("HelloWorld!"); return(0); }