We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From technomancy/leiningen#1668:
Calling lein trampoline run, then typing the following leads to strange output:
lein trampoline run
user=> (^ 2 7) IllegalArgumentException Metadata must be Symbol,Keyword,String or Map clojure.lang.LispReader$MetaReader.invoke (LispReader.java:720) RuntimeException Unmatched delimiter: ) clojure.lang.Util.runtimeException (Util.java:170) user=> (* 2 7) 714 user=> (^ 2 7) IllegalArgumentException Metadata must be Symbol,Keyword,String or Map clojure.lang.LispReader$MetaReader.invoke (LispReader.java:720) RuntimeException Unmatched delimiter: ) clojure.lang.Util.runtimeException (Util.java:170) user=> (+ #_=> 1 2 3) 76
In particular, it seems like the 7 is retained even after ) is parsed, and this is printed as a prefix in front of next evaluation result.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From technomancy/leiningen#1668:
Calling
lein trampoline run
, then typing the following leads to strange output:In particular, it seems like the 7 is retained even after ) is parsed, and this is printed as a prefix in front of next evaluation result.
The text was updated successfully, but these errors were encountered: