add some block parsing and a test (incomplete)

This commit is contained in:
Kasey White
2022-10-01 19:34:42 -04:00
committed by Lucas
parent 4acb849f09
commit 118a5ac54e
2 changed files with 24 additions and 2 deletions

View File

@@ -50,6 +50,13 @@ fn module() {
y
}
pub fn wow2(a: Int){
let x = 1 + {
2 + 7 * 8
} / 2
x
}
"#;
let len = code.chars().count();