Start using description meta.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-05-09 17:29:37 -07:00
parent 17f4ebc297
commit 035b98a602
15 changed files with 18 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
title: Compiling a Functional Language Using C++, Part 2 - Parsing
date: 2019-08-03T01:02:30-07:00
tags: ["C and C++", "Functional Languages", "Compilers"]
description: "In this post, we combine our compiler's tokenizer with a parser, allowing us to extract structure from input source code."
---
In the previous post, we covered tokenizing. We learned how to convert an input string into logical segments, and even wrote up a tokenizer to do it according to the rules of our language. Now, it's time to make sense of the tokens, and parse our language.