Alex Nadalin
Alex Nadalin
Currently, we're limited to bash, so for example win is out of the picture. ABS executes programs with `bash -c` which can definitely be improved.
I would like to start thinking about concurrent primitives in ABS. Given Go's primitives, it's not that hard for us to implement the same exact behaviors (eg. `go func()`) but...
Currently, we only test ABS' lexer, parser, evaluator and ability to build cross-platform At some point, we should definitely have a set of scripts to ensure BC is not broken...
We should start thinking of including tests of ABS scripts in our CI workflow. Right now only go tests are triggered -- which is fine, but might lead to funny...
Sometimes I'd like to quickly calculate a percentage eg. 5% of 13. Something as simple as `5 %% 13` would do it for me.