From 1bbf102985a4c4ebce18f6bf8c222d807cf0a55a Mon Sep 17 00:00:00 2001 From: Valk Richard Li <48872266+ValKmjolnir@users.noreply.github.com> Date: Thu, 25 Jun 2020 14:19:49 +0800 Subject: [PATCH] Update README.md --- README.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/README.md b/README.md index b9ca328..dd8c808 100644 --- a/README.md +++ b/README.md @@ -36,24 +36,6 @@ And the flow chart of lexer is here: # Parser -The parser can recognize some basic elements in resource program. - -In __version 1.1__ you can use the fully-functional parser. - -But there are still some differences such as: - -```javascript -(var a,b,c)=(1,2,3); -var (r,g,b)=color; -(a,b)=(b,a); -``` - -etc. cannot be recognized. - -And each statement must have a ';' after it or you will be informed with __'error: expect a ';''__ . - -In __version 2.0__ these problems have been solved. - In __version 2.0__ ```javascript (var a,b,c)=(1,2,3);