Hacker News new | ask | show | jobs
by ferostar 5665 days ago
You could give Clojure a try, with Ring (an awesome library) and Compojure (a Sinatra-like framework).
1 comments

This is an area where JVM interop is really nice, too. You can deploy with well tested & documented web servers.
I'm fairly versed in functional programming and LISP (having grokked PG's "On Lisp"). (Un)fortunately, I have yet to touch Java -- it always conjured images of C/C++, and that was sufficient to keep me at arm's length (I'm a python robotics hacker day-to-day).

My question: How requisite is Java know-how to using Clojure?

You need to know what's in the Java libraries if you want to write to the Java libraries. If your code is all self contained, then you don't. So - open a Swing JFrame and you need to know where that is in the API and how to call it.