Explore >> Select a destination


You are here

embecosm.com
| | nurkiewicz.com
19.1 parsecs away

Travel
| | Clojure is a dynamically, strongly typed programming language. It's a dialect of _Lisp_ running on the Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. That weird syntax is called _Polish prefix notation_. Basically, in every other language you've used math operators like plus or minus are infix. It means they are placed between operands. For example, `1 + 2`. In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`.
| | blog.bittersweetryan.com
19.0 parsecs away

Travel
| | In functional programming a map function is a way to create an array by passing each element of the array into a function. Mapping function...
| | sreekar.ch
17.4 parsecs away

Travel
| | But first What is functional programming ? Functional programming is a programming paradigm in which most computation is treated as evaluation of functions. It emphasizes on expression evaluation instead of command execution. Wikipedia When did it all start ? In the 90s, there was a war between declarative programming and imperative programming. Declarative programming then represented by logic programming languages like Prolog and early functional languages like Erlang. And imperative languages were r...
| | andreasimonecosta.dev
82.7 parsecs away

Travel
| Let's try to clarify, once and for all, the true essence of type parameters.