clj-on-windows

For those interested in making clj on Windows https://dev.clojure.org/jira/browse/TDEPS-67. Also see https://github.com/littleli/scoop-clojure.
2019-03-29T03:32:19.000800Z

I just installed clj on Windows and it was a straightforward experience! I haven't done much with it except start a REPL, great work 👍

2019-03-29T03:38:39.000900Z

I'm used to running the REPL with leiningen, so I exit with (exit) or ctrl+D, but it seems like I can only exit with ctrl+Z, on Linux that backgrounds the current process, but I'm not very well versed in PowerShell, am I doing things right?

alexmiller 2019-03-29T03:46:36.001100Z

I think it's possibly ctrl+C on windows?

2019-03-29T03:53:18.001300Z

Ah! Yes, thank you! That just worked 🙂

2019-03-29T03:53:28.001500Z

I mostly use WSL on Windows.

seancorfield 2019-03-29T04:07:16.001700Z

Yeah, I was a bit surprised that ctrl-d didn't work, but I remembered that ctrl-z is eof on Windows (because, why not?). Ctrl-c will kill the process, so that works too.

👍 1