Inspired by "Parsing CSS with Parsec".
Just quick notes and code that you can play with in REPL.
By @kachayev
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| ## Alexey Kachayev, 2014 | |
| ## Link to slides: | |
| ## http://goo.gl/n4ylC4 | |
| ## Basic: | |
| ## type Parser = String -> Tree | |
| ## Composition | |
| ## type Parser = String -> (Tree, String) |
Inspired by "Parsing CSS with Parsec".
Just quick notes and code that you can play with in REPL.
By @kachayev