Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ShalokShalom/736647f3fb697163882e8817a26e8416 to your computer and use it in GitHub Desktop.
Save ShalokShalom/736647f3fb697163882e8817a26e8416 to your computer and use it in GitHub Desktop.
homoiconic transpiler toolchain
@ShalokShalom
Copy link
Author

hydra

@ShalokShalom
Copy link
Author

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