summaryrefslogtreecommitdiff
path: root/src/jvm/clojure/lang/Repl.java
AgeCommit message (Collapse)Author
2011-03-21get rid of checked exceptionsRich Hickey
2008-12-30made Repl and Script public againRich Hickey
2008-12-29unified clojure.main, patch from Stephen C. GilardiRich Hickey
2008-12-14Moved to Eclipse Public License - see epl-v10.html orRich Hickey
http://opensource.org/licenses/eclipse-1.0.php
2008-11-10Interim checkin - DO NOT USE!!Rich Hickey
Unless you are interested in helping test: AOT compiler! build and start Clojure with: -cp ./classes:./src/clj:clojure.jar try: (do (compile 'clojure.core) (compile 'clojure.set) (compile 'clojure.xml) (compile 'clojure.zip)) restart Clojure - faster? rebuild Clojure w/o clean, should get faster start from jar alone deleted set/xml etc dirs Moved clojure ns to clojure.core, moved set/xml etc up out of dirs New binding syntax (breaking change) for: doseq dotimes with-open when-first if-let when-let plus: new print-dup functionality for replica generation of compilation constants new *print-dup* flag, prints duplicators back to simplified readably printing for repl readable fns, as long as they are not closures
2008-11-08Interim checkin - DO NOT USE!!Rich Hickey
Unless you are interested in helping test: Moved clojure ns to clojure.core, moved set/xml etc up out of dirs New binding syntax (breaking change) for: doseq dotimes with-open when-first if-let when-let plus: new print-dup functionality for replica generation of compilation constants new *print-dup* flag, prints duplicators back to simplified readably printing for repl readable fns, as long as they are not closures
2008-10-24added *print-length* and *print-level*, patch from Stephen C. GilardiRich Hickey
2008-10-11refined ## to #=, now takes eitherRich Hickey
#=classname #=(classname. ctor-args*) #=(classname/staticMethod args*) #=(varname args*) and calls with _unevaluated_ args
2008-10-08added redirectable *err*, patch from Stephen C. GilardiRich Hickey
2008-09-19added *1/2/3 *e and tweaked error messagesRich Hickey
2008-08-07made UTF-8 default encoding on iostreams *in*, *out*, and in loadFile and ↵Rich Hickey
loadResource, from cemerick
2008-04-19refactor to remove static init cycle between RT and Compiler, in order to ↵Rich Hickey
run RT.init in static init
2008-03-24made Repl load files in user ns, changed Repl to serve as better example of ↵Rich Hickey
hosting Clojure in Java using public APIs
2008-03-20got rid of input purge on exceptionRich Hickey
2008-03-17switched to readLine on input purge in Repl exception handlerRich Hickey
2008-03-16added newline on EOFRich Hickey
2008-03-14added System.exit callRich Hickey
2008-03-12prevent nested #()s, dump input stream on repl exception, put cause message ↵Rich Hickey
first
2008-02-18command line args can follow '--', in Repl and ScriptRich Hickey
2008-02-05moved boot.clj load to RT.init()Rich Hickey
2008-01-25interim checkin - do not useRich Hickey
2008-01-24interim checkin - do not useRich Hickey
2008-01-23interim checkin, do not useRich Hickey
2008-01-06added *warn-on-reflection*Rich Hickey
2007-10-18added Repl and ScriptRich Hickey