Explore >> Select a destination


You are here

www.danstroot.com
| | thinkingeek.com
4.0 parsecs away

Travel
| | A common task in imperative programming languages is writing a loop. A loop that can terminate requires a way to check the terminating condition and a way to repeatedly execute some part of the code. These two mechanisms exists in many forms: from the crudest approach of using an if and a goto (that must jump backwards in the code) to higher-level structured constructs like for and while ending in very high-level constructs built around higher-order functions in for_each-like constructs and more recently...
| | hamatti.org
5.6 parsecs away

Travel
| | I have two main beliefs that led me to building communities for developers: 1) technology can be used for the good of humanity and 2) technology is everywhere and you can't opt out.
| | chipnetics.com
5.3 parsecs away

Travel
| | The most underrated programming language that nobody is talking about. Created in 1994, Pike is an interpreted high level language with syntax similar to C with batteries included!
| | patshaughnessy.net
28.5 parsecs away

Travel
| [AI summary] The article explains how the Crystal compiler parses code by breaking it down into tokens and constructing an abstract syntax tree (AST), highlighting the recursive process and the challenges of reading code one token at a time.