diff --git a/version0.2/nasal_interpreter.cpp b/version0.2/nasal_interpreter.cpp deleted file mode 100644 index a3ed766..0000000 --- a/version0.2/nasal_interpreter.cpp +++ /dev/null @@ -1,54 +0,0 @@ -#include -#include -#include -#include "nasal.h" - -int main() -{ - std::string command; - std::cout<<">> input \"help\" to find help."<> "; - std::getline(std::cin,command); - if(command=="help") - { - std::cout<<">> 1. input file name to run the nasal script."<> 2. command cls to clear the screen."<> 3. command exit to shut down the program."<> 4. command lexer to see tokens in stack."<> 5. command del to delete all elements in stack."<> 6. command run to run the programme in stack."<> 7. command rs to check the source program."<