Oliv95/Pyskellator

Arithmetic expressions to lambda expressions

Oliv95 opened this issue · 2 comments

x+10 should be changed to (lambda : (lambda x:x)(x) + (lambda : 10)())()

x + 10 is atm `((lambda x: x)(x) + (lambda : 10)())

x + 10 now looks like this: (lambda: ((lambda x: x)(x) + (lambda: 10)()))()
hasn't been tested on longer expressions or different expressions.