From 97f494c2a7df17829e4321c687430539d6346ba8 Mon Sep 17 00:00:00 2001 From: Valk Richard Li <48872266+ValKmjolnir@users.noreply.github.com> Date: Sun, 8 Sep 2019 13:10:23 +0800 Subject: [PATCH] Update README.md --- README.md | 57 ------------------------------------------------------- 1 file changed, 57 deletions(-) diff --git a/README.md b/README.md index c3f0672..3735f10 100644 --- a/README.md +++ b/README.md @@ -233,22 +233,6 @@ NasalHash: Hash in nasal {} This is what it outputs. -# Now with var_stack and function_stack - -By printing the two stacks you can see how vars and functions change! - -[long long int]a:1 - -[double]b:3.14 - -[string]c:"hello world!" - -function:swap - -function:__main - -function:hello - # Now the parser can... recognize all these things... @@ -334,47 +318,6 @@ recognize all these things... e.e(e("str",e.e()/2880)~"str"); var e=func(){e;}; - -# The structure of basical elements is... - -class var; - -class nasal_hash;//forward declaration - -struct nasal_list_unit; - -class nasal_list; - -struct nasal_hash_unit; - -class nasal_hash; - -struct token_unit; - -struct parameter; - -class func; - -class var_stack; - -var_stack nasal_var_stack; - -class func_stack; - -func_stack nasal_func_stack; - -class token_list; - -token_list nasal_lexer; - -class parse; - -parse nasal_parser; - -#include "nasal_lexer.h" - -main(); - # Push down automata After many times of failure,i finally try to use PDA to do the parse work.