"//javascript" seems to be broken
When I create this file in a MicroScript project, it is interpreted as MicroScript and causes a syntax error due to the semicolon:
//javascript
global.parseInt = parseInt;
When I create this file in a MicroScript project, it is interpreted as MicroScript and causes a syntax error due to the semicolon:
//javascript
global.parseInt = parseInt;
You need a space between // and javascript. Otherwise it will not work.