Arithmetic expressions to lambda expressions
Oliv95 opened this issue · 2 comments
Oliv95 commented
x+10
should be changed to (lambda : (lambda x:x)(x) + (lambda : 10)())()
BunnyFiscuit commented
x + 10
is atm `((lambda x: x)(x) + (lambda : 10)())
BunnyFiscuit commented
x + 10
now looks like this: (lambda: ((lambda x: x)(x) + (lambda: 10)()))()
hasn't been tested on longer expressions or different expressions.