13 lines
203 B
Rust
13 lines
203 B
Rust
pub mod lex;
|
|
pub mod codegen;
|
|
use crate::codegen::fasm::*;
|
|
use crate::parse::ast::*;
|
|
pub mod parse;
|
|
|
|
fn main() {
|
|
fasm_codegen(Expr::VarDefenition(VarDefenition {
|
|
name: "hi",
|
|
value: 100,
|
|
}));
|
|
}
|