You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 1, 2018. It is now read-only.
If a line starts with a comment, irepl gets stuck on that input line. Probably not an issue for interactive evaluation but a bummer when copy/pasting code.
Transcript below:
$ lein irepl
log4j:WARN No appenders could be found for logger (com.offbytwo.class_finder.ClassFinder).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
Clojure 1.4.0
IClojure 1.1.1 -- an enhanced Interactive Clojure
? -> Introduction and overview of IClojure's features
?symbol -> Print documentation for symbol
??symbol -> Show source of function or macro
%d symbol -> Describe Java class (show constructors, methods and fields)
%f class -> find all classes matching this name (supports globs)
%f class package -> like the above, but restrict search to the given package
user[1]: (+ 1 2)
user[1]= 3
user[2]: (+ 1 2) ;end of line comment OK
user[2]= 3
user[3]: ;; start of line comment not OK
...: (+ 1 2)
...:
...:
...:
...:
...:
...: ;;hitting ^C here
...:
Keyboard Interrupt
user[3]:
The text was updated successfully, but these errors were encountered:
If a line starts with a comment, irepl gets stuck on that input line. Probably not an issue for interactive evaluation but a bummer when copy/pasting code.
Transcript below:
$ lein irepl
log4j:WARN No appenders could be found for logger (com.offbytwo.class_finder.ClassFinder).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
Clojure 1.4.0
IClojure 1.1.1 -- an enhanced Interactive Clojure
? -> Introduction and overview of IClojure's features
?symbol -> Print documentation for symbol
??symbol -> Show source of function or macro
%d symbol -> Describe Java class (show constructors, methods and fields)
%f class -> find all classes matching this name (supports globs)
%f class package -> like the above, but restrict search to the given package
user[1]: (+ 1 2)
user[1]= 3
user[2]: (+ 1 2) ;end of line comment OK
user[2]= 3
user[3]: ;; start of line comment not OK
...: (+ 1 2)
...:
...:
...:
...:
...:
...: ;;hitting ^C here
...:
Keyboard Interrupt
user[3]:
The text was updated successfully, but these errors were encountered: