|
|
|
|
|
by mpthrapp
4160 days ago
|
|
I'm not quite sure what I want to do, other than I don't want to do front-end development. The other language I have any experience in is Delphi, which is a compiled language. I have heard a lot of good things about Go, maybe I'll give that a shot. I'd love to learn a functional language. I've looked at Haskell, and ouch. As someone with no formalized CS training, a lot of the type theory stuff goes right over my head. Is there a less crazy functional language you would recommend? Yeah, I've looked a little at Rust, and it looks like it'll be interesting in a couple years. |
|
Clojure. It's a well supported and documented dialect of Lisp, which is a fundamentally functional language (though not purely functional), implemented on a platform that just about everyone has access to: the JVM.
The more you can minimize your use of the dot operator (which implicitly means minimizing your dependence on Java libraries), the more you'll learn about functional programming.