Community
RESOURCES
7
Lisp in PythonThis is a lisp implementation in Python. It's about 250 LoC, including tests and comments. It's very simple right now but will be adding more to it soon!
Added lambdas!
Now you can write functions with lambda e.g.:
> ((lambda (x) (+ x 1)) 1)
> 2
> (let add (lambda (a b) (+ a b)))
> (add 2 3)
> 5
`1
Exit continuation in JSThis implements Scheme's exit continuation in JS. Exit continuations are useful when you're writing code recursively and want to end the recursion early.
niwad22952 Some of the fast-food restaurant chain’s most popular breakfast dishes include the Taquito with Cheese, Honey Butter Chicken Biscuit, and Egg Sandwich.
https://whataburger-breakfast-menu.info/
1 month ago