From 7ff88fa21d27225230d902fd0fadfddaa39845b2 Mon Sep 17 00:00:00 2001 From: DrEden33773 Date: Fri, 22 Dec 2023 01:30:48 +0800 Subject: [PATCH] fix: syntax error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f52b1d..c78dc44 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ This is a simple `Rust` implementation of `PL/0` compiler. ## Structure $$ -\text{} \Longrightarrow \text{Lexer} \stackrel{Token}{\Longrightarrow} \text{Parser} \stackrel{AST}{\Longrightarrow} \text{CodeGen} \Longrightarrow \text{} \stackrel{\textbf{VM}}{\longrightarrow} \set{\text{Result}} +\set{\text{Source Code}} \Longrightarrow \text{Lexer} \stackrel{Token}{\Longrightarrow} \text{Parser} \stackrel{AST}{\Longrightarrow} \text{CodeGen} \Longrightarrow \set{\text{PCode}} \stackrel{\textbf{VM}}{\longrightarrow} \set{\text{Result}} $$ | Part | Analysis List |