skylang/src/main.rs
2023-11-16 19:01:52 -05:00

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,
}));
}