skylang/src/main.rs

10 lines
207 B
Rust
Raw Normal View History

2023-11-16 08:59:32 -06:00
pub mod lex;
pub mod codegen;
use crate::codegen::fasm::*;
use crate::parse::ast::*;
pub mod parse;
fn main() {
fasm_codegen(Expr::MathExpr(Math {left: 1, right: 2, operator: MathOperator::OP_DIV}));
}