feat: add the ast module

This commit is contained in:
rvcas 2022-08-08 14:58:29 -04:00
parent 46057d62dc
commit 35143f1544
No known key found for this signature in database
GPG Key ID: C09B64E263F7D68C
2 changed files with 7 additions and 0 deletions

5
crates/lang/src/ast.rs Normal file
View File

@ -0,0 +1,5 @@
pub struct Module {}
pub enum Decl {}
pub enum Expr {}

View File

@ -1,3 +1,5 @@
pub mod ast;
#[cfg(test)]
mod tests {
#[test]