Added parser, compiler, virtual machine, garbage collector, tables and values. Builds but may have errors.

This commit is contained in:
paladin 2026-08-19 23:28:35 +01:00
commit 5d4fac0a91
8 changed files with 3199 additions and 0 deletions

12
Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "mars"
version = "0.1.0"
edition = "2024"
[features]
vector3 = ["dep:glam"]
messages = []
assertions = []
[dependencies]
glam = { version = "0.33.3", optional = true }