#pragma once //general utilities #include "toy_common.h" #include "toy_console_colors.h" #include "toy_memory.h" //building blocks #include "toy_value.h" #include "toy_ast.h" #include "toy_routine.h" #include "toy_stack.h" //pipeline #include "toy_lexer.h" #include "toy_parser.h" #include "toy_bytecode.h" #include "toy_vm.h"