add test file

This commit is contained in:
ValKmjolnir
2021-08-01 22:34:02 +08:00
parent ead5ca32b3
commit a1adb5b948
5 changed files with 36 additions and 22 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ struct token
int line;
int type;
std::string str;
token(int l=0,int t=tok_null,std::string s=""){line=l;type=t;str=s;return;}
token(int l=0,int t=tok_null,std::string s=""){line=l;type=t;str=s;}
};
class nasal_lexer