We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b1a822 commit 21b7929Copy full SHA for 21b7929
src/cljs/cljs/core.cljs
@@ -2425,11 +2425,12 @@ reduces them without incurring seq initialization"
2425
[& objs]
2426
(pr-with-opts objs (pr-opts)))
2427
2428
-(defn print
+(def ^{:doc
2429
"Prints the object(s) using string-print.
2430
- print and println produce output for human consumption."
2431
- [& objs]
2432
- (pr-with-opts objs (assoc (pr-opts) :readably false)))
+ print and println produce output for human consumption."}
+ print
+ (fn cljs-core-print [& objs]
2433
+ (pr-with-opts objs (assoc (pr-opts) :readably false))))
2434
2435
(defn println
2436
"Same as print followed by (newline)"
0 commit comments