v1.2.4 has been released with a couple of nice-to-have language features: int, float, bool and strings can be declared as constants, e.g.: const int MAX = 10; P...
v1.2.3 has been released. A minor update, mainly to fix a debugger issue where hovering over "null" would crash the application. Also adds a "mousewheel" runtim...
MotC version 1.2.2 has been released. Variable scopes "for", "while", "if" and "else" statements now create variable scopes. Variables declared within a scope a...
A small update to add support for array based for loops. The syntax is similar to C++: for (type elem : array) { [do something with "elem"] } For example: struc...
MotC now has intellisense, including: Errors displayed as you type Autocomplete Hover over items to seen definition Hover over library functions to see document...
A small bug-fix release to address an issue where exporting fails in Windows due to it opening a PowerShell terminal instead of a cmd.exe terminal depending on...
New v1.1.0 release. Highlights: New "#include" directive similar to C/C++, for splitting large projects into multiple files, or creating re-usable libraries of...
Just a minor update. Mainly to make some under-the-hood changes to the way heap allocation and garbage collection works. Change list: Under-the-hood changes to...