top | item 37158377

Lisp in JavaScript

5 points| codesiddu | 2 years ago | reply

Loved LISP back in my college days. Still think it is a good language to learn for new programmers.

Anyone still using LISP in prod. Saw a post on Grammarly using it.

https://www.siddg.com/creating-a-programming-language - wrote this recently when I went down the memory lane.

2 comments

order
[+] GianFabien|2 years ago|reply
I too like the elegance and simplicity of Lisp. I find the uniform syntax of (verb subject arguments...) appealing. But then when I try to use Common Lisp my brain hurts from the thousands of functions and their semantics. Maybe I should have paid more attention to namespaces, etc. Anyway, I find the C-like syntax of JavaScript and its Self-like semantics acceptable. MDN documentation makes the many Web APIs + HTML + CSS accessible.

For me Chrome for the GUI and Deno for the back-end with a sprinkling of WASM and TypeScript is sufficient for most of my projects.