TudorLang/tests/test.cpp
2025-07-12 00:35:49 +08:00

14 lines
293 B
C++

#include "Lexer.hpp"
#include <iostream>
#include <string>
#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);
}