diff --git a/0124-generalized-parsing-pt1/README.md b/0124-generalized-parsing-pt1/README.md new file mode 100644 index 00000000..7830b701 --- /dev/null +++ b/0124-generalized-parsing-pt1/README.md @@ -0,0 +1,5 @@ +## [Point-Free](https://www.pointfree.co) + +> #### This directory contains code from Point-Free Episode: [Generalized Parsing: Part 1](https://www.pointfree.co/episodes/ep124-generalized-parsing-part-1) +> +> The parser type we built so far is highly tuned to work on strings, but there are many things out in the world we’d want to parse, not just strings. It’s time to massively generalize parsing so that it can parse any kind of input into any kind of output. diff --git a/README.md b/README.md index c8e64b02..ca4fcce0 100644 --- a/README.md +++ b/README.md @@ -126,3 +126,4 @@ This repository is the home of code written on episodes of 1. [Parsing Xcode Logs: Part 1](0121-parsers-recap-pt3) 1. [Parsing Xcode Logs: Part 2](0122-parsers-recap-pt4) 1. [Fluently Zipping Parsers](0123-fluently-zipping-parsers) +1. [Generalized Parsing: Part 1](0124-generalized-parsing-pt1)