Hacker News new | ask | show | jobs
by lisper 309 days ago
Lisp in ~100 lines of Python:

https://flownet.com/ron/l.py

2 comments

Or from the venerable: https://norvig.com/lispy.html
Can’t you just “import lisp”?
Um, no?

    Python 3.11.6 (v3.11.6:8b6ee5ba3b, Oct  2 2023, 11:18:21) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import lisp
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    ModuleNotFoundError: No module named 'lisp'