Shantanu Kumar writes:

> Hi,
>
> I noticed that on the Clojure REPL, `format` works fine:
>
> user=> (format "foo%s" :s)
> "foo:s"
> user=> (format "foo%s" 's)
> "foos"
>
> However, on the CLJS REPL (Rhino), I get this:
>
> ClojureScript:cljs.user> (format "foo%s" :s)
> "foo���'s"
> ClojureScript:cljs.user> (format "foo%s" 's)
> "foo���'s"
>
> Wanted to first confirm this is a bug before filing a ticket.
>
> Shantanu

This seems like a bug to me. It's caused by an implementation detail of
ClojureScript (keywords and symbols are string starting with a specific
UTF8 byte sequence).

--
Moritz Ulrich

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to