Last active
April 26, 2024 20:25
-
-
Save also/2aec5e4adeb2e4f3ce06 to your computer and use it in GitHub Desktop.
require-macros and syntax quoting
This file contains 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
(ns a | |
(:require-macros [clojure.string :as alias])) | |
; this is fine | |
`xxx/name | |
; this throws clojure.lang.Symbol cannot be cast to clojure.lang.Namespace | |
`alias/name |
This file contains 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
(require 'cljs.closure) | |
(cljs.closure/build "." {:output-to "out/main.js"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment