This repository has been archived by the owner on Sep 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add failing test for conditional with require macros
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
test-namespaces/good_conditionals/conditional_with_require_macros.cljc
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
(ns good-conditionals.conditional-with-require-macros | ||
(:require [clojure.string :as str]) | ||
#?(:cljs (:require-macros [good-conditionals.conditional-with-require-macros :refer [my-when]]))) | ||
|
||
#?(:clj | ||
(defmacro my-when [x] | ||
`(when true | ||
~x))) | ||
|
||
(defn hello [] | ||
(my-when (println (str/join) "H" "ello"))) |
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