start bytecode compilation

This commit is contained in:
nora 2021-12-29 17:00:30 +01:00
parent b35d12e041
commit c6765d7da6
14 changed files with 342 additions and 46 deletions

View file

@ -27,7 +27,7 @@ fn num_lit(number: f64) -> Expr {
fn ident(name: &str) -> Ident {
Ident {
name: name.to_string(),
sym: name.to_string(),
span: Default::default(),
}
}