lambda-py
lambda-py copied to clipboard
Hi, I'm using Racket 7.1 and trying to play with some reduction relations. However, if I simply run command `racket lambdapy-reduction.rkt`, the following error is raised. I guess it was...
class c: pass c.x, c.y = (5,6) reports exception: can't assign to literals this works in python. This makes solving the destructuring bind bug for classes somewhat tricky. I've worked...
Desugar `from foo import *` statement. This requires handling `__all__` of the module if present etc.
Handle nested modules like "A.B" in **import**. The modules are still searched in python-lib/. We'll worry about sys.path later.