1 2 3 4 5 6 7
use crate::ast::Statement; pub mod mips; pub trait Codegen { fn generate(&self, ast: Vec<Statement>) -> String; }