rockstar-py icon indicating copy to clipboard operation
rockstar-py copied to clipboard

Python transpiler for the esoteric language Rockstar

Results 17 rockstar-py issues
Sort by recently updated
recently updated
newest added

example: ``` Example takes test Give back test Say My Logf Ext taking "test" ``` ``` File ".default.py", line 3 print(My_Logf_Ext taking "test) ^ SyntaxError: invalid syntax ``` transpiled code:...

Hi, there seems to be an issue with transpiling compound assignments: ``` X is 1 Let X be with 1 Say X ``` transpiles into ``` X = 1 X...

bug

It seems that code blocks (function body, loop, condition body etc) are not terminated after a blank line. Example: ``` While X is greater than 1 Say X If X...

Hi, it would be awesome if rockstar-py supported list arithmetic (in other words, multiple expressions on the right side of the operator) Example: ``` Let X be 1 with 2,...

enhancement

Rockstar-py seems not to be able to compile 99-beer.rock (from rockstar/examples): `python3 -W ignore -m rockstarpy --output bottles.py --input $ROCKSTAR/examples/99_beers.rock` runs fine, but ``` python3 bottles.py Traceback (most recent call...

After running a primality tester written in Rockstar, the generated file is erroring on this line (the_storm is in inputted value): ` if the_storm

bug