mirror of
https://github.com/italicsjenga/agb.git
synced 2025-02-04 13:36:36 +11:00
9 lines
248 B
Rust
9 lines
248 B
Rust
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||
|
let module = agb_xm_core::load_module_from_file(&std::path::Path::new(
|
||
|
"../agb-tracker/examples/ajoj.xm",
|
||
|
))?;
|
||
|
let output = agb_xm_core::parse_module(&module);
|
||
|
|
||
|
Ok(())
|
||
|
}
|