miniscript
miniscript copied to clipboard
source code of both C# and C++ implementations of the MiniScript scripting language
Windows and Linux amd64 builds work, can try and set up arm and 32bit builds for those if that's a thing you want to support As for macOS (broken right...
Fixed char is unsigned by default in arm-linux-gcc by adding -fsigned-char.
Running on arm64 android termux. Assert failed: s.atB(0) == -26 at src/MiniScript/SimpleString.cpp:314 s.atB(0) is 230 instead of -26.
If command-line MiniScript is given a path to a script file that contains very long lines (e.g., 2700 characters long), it terminates without generating any output (other than the standard...
These constructors had a private level and were marked with the comments "do not use this version", but in order for them not to be available, it is enough not...
Steps to Reproduce: 1) Compile the following: ```lua func = function() if false then return "This is returned" if true then return "This should be returned" end if return ""...
Mini Micro has a cool "import" feature described [here](https://forums.miniscript.org/d/93-how-import-works). (And to close some of the questions open in that thread: yes, you can use `if globals == locals` to tell...
I was trying to make a function that instantiated a class passed in as an argument: ``` tileAsSprite = function(col, row, baseClass=Sprite) noob = new baseClass // ... return noob...
It appears that when the new line continuation feature is used, the line number counts that appear in error messages are no longer correct.
This is more of a question/discussion, and I haven't found a better place to put it, so please forgive me if this is not the right one. I'm not sure...