Created
May 3, 2025 08:24
-
-
Save ShalokShalom/736647f3fb697163882e8817a26e8416 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
homoiconic transpiler toolchain |
Yes, you can implement source-level macros in non-homoiconic languages using token streams, quasiquotation, or AST manipulation—but it’s never as seamless as in homoiconic languages.
These approaches add layers of complexity (parsing, AST APIs, hygiene rules) that Lisp avoids by design.
Homoiconicity makes macros intrinsic; non-homoiconic languages make them extrinsic, requiring explicit tooling to bridge syntax and semantics.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hydra