actually compiles and does stuff now

This commit is contained in:
2024-12-06 19:44:33 -05:00
parent 31c197e991
commit 620c4557e9
67 changed files with 1931 additions and 1287 deletions

View File

@@ -9,6 +9,7 @@ pub enum Keyword {
Impl,
For,
Asm,
Funne,
}
impl Keyword {
@@ -23,6 +24,7 @@ impl Keyword {
"trait" => Self::Trait,
"impl" => Self::Impl,
"asm" => Self::Asm,
"funne" => Self::Funne,
_ => return None,
})
}