/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

janet.guide
| | ianthehenry.com
3.1 parsecs away

Travel
| | You've probably seen this Python 101 thing before: @memoized def fib(n): if n <= 1: return n return fib(n - 1) + fib(n - 2) Leaving aside the absurdity of computing Fibonacci numbers recursively, it's a common first introduction to Python decorators and higher-order functions. fib is just a function, and memoized takes that function and returns a new function (or something with a __call__ method) that, you know, memoizes the result. Python's decorators give us a nice notation for writing this, but we cou...
| | defmacro.org
1.8 parsecs away

Travel
| | An article about Lisp programming language.
| | msm.runhello.com
2.3 parsecs away

Travel
| |
| | patshaughnessy.net
15.3 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.