You are here |
aradaelli.com | ||
| | | |
www.breakingbyte.com
|
|
| | | | People asked me a few times what kind of technology was behind Exp3D, which programming language I used and how I could come up with a Javascript ... | |
| | | |
donsbot.com
|
|
| | | | A common misconception from non-Haskellers is that Haskell, when compiled, pays an ongoing penalty for supporting laziness by default. The idea is that in a lazy language, every expression would suspend to a heap-allocated, garbage collected, thunk. Even if you were to use the variable immediately. That sounds scarily expensive. In the real world however,... | |
| | | |
nurkiewicz.com
|
|
| | | | 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`. | |
| | | |
www.welcometothejungle.com
|
|
| | We talked with Carol Willing and ?ukasz Langa about Python governance entities as well as how the evolutions of the language are decided. |