You are here |
qsantos.fr | ||
| | | |
www.ralfj.de
|
|
| | | | This post is about uninitialized memory, but also about the semantics of highly optimized "low-level" languages in general. I will try to convince you that reasoning by "what the hardware d... | |
| | | |
blog.sigplan.org
|
|
| | | | "Undefined Behavior" often has a bad reputation. But what, really, is Undefined Behavior, and is it actually that bad? In this blog post, I will look at this topic from a PL perspective... | |
| | | |
www.ralfj.de
|
|
| | | | This is a cross-post of an article that I wrote for the SIGPLAN blog. "Undefined Behavior" often has a bad reputation. People see it as an excuse compiler writers use to break code, or an ... | |
| | | |
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`. |