Meikel Brandmeyer napisaĆ(a):
> Hi,
>
> Am 06.06.2009 um 21:40 schrieb Rob Wolfe:
>
> > I'm trying to understand why this program throws an exception:
>
> It doesn't work because
>
> > (-> (new StringReader "abc")
> > (new clojure.lang.LineNumberingPushbackReader))
>
> expands to
>
> (new (new
Hi,
Am 06.06.2009 um 21:40 schrieb Rob Wolfe:
I'm trying to understand why this program throws an exception:
It doesn't work because
(-> (new StringReader "abc")
(new clojure.lang.LineNumberingPushbackReader))
expands to
(new (new StringReader "abc") LineNumberingPushbackReader)
while