#include "Lexer.hpp" #include "Tools.hpp" #include #include #include #define NV(v) {std::cout<<#v<<" : '"<<(v)<<"'\n";} int main(){ ztl::get_T_name(); std::string hello_world = R"( print("hello ztl!"); )"; std::cout<<"This is a ztl's test\n"; NV(hello_world) std::vector lexer_hello_world = ztl::lexer::lexer(hello_world); ztl::logger(lexer_hello_world); }