yyyyyyyan / rockstar-py

Python transpiler for the esoteric language Rockstar
MIT License
94 stars 26 forks source link

Functions not taking string literals #42

Open Surferlul opened 3 years ago

Surferlul commented 3 years ago

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:

def Example(test):
    return test
print(My_Logf_Ext taking "test)