I found Light Table is a great tool to try Clojure language.
It has a handy feature called Instarepl -
;; Anything you type in here will be executed immediately with the results shown on the right.
However, I can't find a way to use a legacy REPL mode which I can run a small code such as
(take 100 (iterate inc 1))
Typing the code, sure the Instarepl immediately eval and show
(1 2 3 4 5 ...)
, but does not exactly shows the result.
Please guide. Thanks.