├── Ast.h ├── CMakeLists.txt ├── DataHandler.cpp ├── DataHandler.h ├── Function.cpp ├── Function.h ├── README.md ├── SysFunctions.cpp ├── SysFunctions.h ├── TokenHandler.cpp ├── TokenHandler.h ├── TokenStream.cpp ├── TokenStream.h ├── Variable.cpp ├── Variable.h ├── Variant.h ├── examples ├── all.ext ├── byref.ext ├── factorial.ext ├── func_test.ext ├── guess.ext ├── increment.ext ├── nested.ext └── scope.ext └── main.cpp /Ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/Ast.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DataHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/DataHandler.cpp -------------------------------------------------------------------------------- /DataHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/DataHandler.h -------------------------------------------------------------------------------- /Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/Function.cpp -------------------------------------------------------------------------------- /Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/Function.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/README.md -------------------------------------------------------------------------------- /SysFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/SysFunctions.cpp -------------------------------------------------------------------------------- /SysFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/SysFunctions.h -------------------------------------------------------------------------------- /TokenHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/TokenHandler.cpp -------------------------------------------------------------------------------- /TokenHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/TokenHandler.h -------------------------------------------------------------------------------- /TokenStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/TokenStream.cpp -------------------------------------------------------------------------------- /TokenStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/TokenStream.h -------------------------------------------------------------------------------- /Variable.cpp: -------------------------------------------------------------------------------- 1 | #include "Variable.h" 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/Variable.h -------------------------------------------------------------------------------- /Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/Variant.h -------------------------------------------------------------------------------- /examples/all.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/all.ext -------------------------------------------------------------------------------- /examples/byref.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/byref.ext -------------------------------------------------------------------------------- /examples/factorial.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/factorial.ext -------------------------------------------------------------------------------- /examples/func_test.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/func_test.ext -------------------------------------------------------------------------------- /examples/guess.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/guess.ext -------------------------------------------------------------------------------- /examples/increment.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/increment.ext -------------------------------------------------------------------------------- /examples/nested.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/nested.ext -------------------------------------------------------------------------------- /examples/scope.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/examples/scope.ext -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherTest/-English/HEAD/main.cpp --------------------------------------------------------------------------------