Convex-Dev / convex.cljc

Any aspect of the Convex stack, from Clojure
Apache License 2.0
53 stars 7 forks source link

Avoid intermediary string when reading from STDIN #3

Open helins opened 3 years ago

helins commented 3 years ago

Currently, special request for reading from STDIN reads a line as a string and then reads this string as Convex Lisp. It should be possible avoiding that and handling directly with an InputStream or a Reader, it is just a matter of making them stop at the next newline.