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

Functions not taking string literals

Open Surferlul opened this issue 4 years ago • 0 comments

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)

Surferlul avatar Feb 14 '21 14:02 Surferlul