structs r a lot more sane in code, can now actually assign & stuff
This commit is contained in:
@@ -4,8 +4,9 @@ pub enum Keyword {
|
||||
Let,
|
||||
If,
|
||||
Return,
|
||||
Break,
|
||||
Loop,
|
||||
Break,
|
||||
Continue,
|
||||
Struct,
|
||||
Trait,
|
||||
Impl,
|
||||
@@ -24,6 +25,7 @@ impl Keyword {
|
||||
"for" => Self::For,
|
||||
"return" => Self::Return,
|
||||
"break" => Self::Break,
|
||||
"continue" => Self::Continue,
|
||||
"loop" => Self::Loop,
|
||||
"trait" => Self::Trait,
|
||||
"impl" => Self::Impl,
|
||||
|
||||
Reference in New Issue
Block a user