~ashn/monkey-python

173d1852e8fee25476388a656551753e486fc7b0 — ashn 1 year, 8 months ago 5cd72b4 main
Remove commented out line of code
1 files changed, 0 insertions(+), 1 deletions(-)

M monkey.py
M monkey.py => monkey.py +0 -1
@@ 1449,7 1449,6 @@ def repl(env: Optional[Environment] = None) -> None:
        env = Environment()
    while True:
        try:
            # self._step(env)
            line = input(">> ")
            print(eval_source(line, env))
        except ParseError as e: