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

List arithmetic support

Open martinpetrovaj opened this issue 5 years ago • 0 comments

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, 3, 4
Say X    (prints 10)

Could be transpiled to:

X = 10    # as result of 1 + 2 + 3 + 4
print(X)

See specification

martinpetrovaj avatar Oct 16 '20 22:10 martinpetrovaj