Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Code

(defn sprintf [& args]
  (with-out-str
    (apply printf args)
    *out*))

Error

(Chrome)

Uncaught TypeError: Cannot read property 'cljs$lang$maxFixedArity' of undefined 

Question:

What am I doing wrong?

share|improve this question
Does (printf "Test") work? – dimagog Jun 15 '12 at 18:18

2 Answers

up vote 1 down vote accepted

(def sprintf format) seems easier.

share|improve this answer
Today I understand how Alexander the Great would have attacked Clojure code. – user1311390 Jun 13 '12 at 10:35
@amalloy Even though you've provided a good workaround, is there a way to fix the original problem, other than this workaround? Thanks. – octopusgrabbus Jun 13 '12 at 19:12
Nope. I have no clojurescript experience; all I can tell from the provided code is that somewhere he's calling undefined as if it were a function. – amalloy Jun 13 '12 at 22:30

I don't get the error you saw, I get an error "No *print-fn* fn set for evaluation environment".

If you dig through the source at https://github.com/clojure/clojurescript/blob/master/src/cljs/cljs/core.cljs you'll find this message in the docs for *print-fn* :

"Each runtime environment provides a diffenent way to print output. Whatever function *print-fn* is bound to will be passed any Strings which should be printed."

So I suggest you play around with *print-fn* - or as @amalloy suggested, just use 'format' directly.

(incidentally if you look at https://github.com/clojure/clojurescript/wiki/Differences-from-Clojure it indicates "*out* is currently not implemented".)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.