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