#include "src/Vm.h" #include "src/Compiler.h" int main() { auto bytecode = JV::Compiler::CompileExample(); JV::VM vm(bytecode); vm.Run(); return 0; }