yasl icon indicating copy to clipboard operation
yasl copied to clipboard

Bytecode Interpreter for Yet Another Scripting Language (YASL).

Results 75 yasl issues
Sort by recently updated
recently updated
newest added

these should return a string representation that is legal YASL code. for example: ``` const x = 'string' echo x # string echo x->repr() # 'string' ``` Strings will be...

enhancement
good first issue
standard-library

This would allow mutually recursive functions, as below: ``` fn f; fn g(....) { f(....); } fn f(....) { g(....) } ``` Something like this?

enhancement

This should include things like `tostr`, which is hardcoded currently, as well as stuff like checking the expected number of arguments.

enhancement

Blocked by #381 Blocked by #382 Blocked by #383

testing