14 lines
293 B
C++
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);
|
|
} |