/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

cronokirby.com
| | wimvanderbauwhede.codeberg.page
1.5 parsecs away

Travel
| | This is a follow-on of my article on algebraic data types, with list-based parser combinators as a practical application.
| | jobjo.github.io
2.1 parsecs away

Travel
| | Parser combinators aresets of functions for building parsers in a composable fashion. Haskell'sParsec library and OCaml'sAngstrom are two examples.Both of th...
| | fsharpforfunandprofit.com
1.9 parsecs away

Travel
| | Building a parser combinator library from scratch
| | www.hillelwayne.com
13.3 parsecs away

Travel
| What does this print? x = 1 x -> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), -> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1.