Update README.md

This commit is contained in:
Valk Richard Li 2019-08-12 23:28:25 +08:00 committed by GitHub
parent 9d56a418c8
commit 815f471247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# Nasal-Interpreter # Nasal-- Interpreter
# Nasal # Nasal
@ -10,6 +10,12 @@ So this is an interpreter for Nasal written by C++.
The interpreter is still in development.Anyone who interested in this could also join us! The interpreter is still in development.Anyone who interested in this could also join us!
# Nasal--
For some reasons i will first try to make a interpreter for nasal--(???)
Maybe.Because i haven't take the lesson of 'principle of compiler'(what a shame...)
# Now complete all types # Now complete all types
var: int float double std::string char long long int var: int float double std::string char long long int
@ -278,8 +284,12 @@ func_stack nasal_func_stack;
class token_list; class token_list;
token_list nasal_lexer;
class parse;
parse nasal_parser;
#include "nasal_lexer.h" #include "nasal_lexer.h"
#include "nasal_parse.h"
main(); main();