Files
Toy/source/toy.h
Kayne Ruse 196b5f86f1 Wrote tests for Toy_Table
I hope that's it, I don't wanna do that again XD
2024-10-04 16:50:54 +10:00

24 lines
439 B
C

#pragma once
//general utilities
#include "toy_common.h"
#include "toy_console_colors.h"
//basic structures
#include "toy_value.h"
#include "toy_array.h"
#include "toy_stack.h"
#include "toy_bucket.h"
#include "toy_string.h"
#include "toy_table.h"
//IR structures and other components
#include "toy_ast.h"
#include "toy_routine.h"
//pipeline
#include "toy_lexer.h"
#include "toy_parser.h"
#include "toy_bytecode.h"
#include "toy_vm.h"