mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 09:31:34 +11:00
9 lines
259 B
Rust
9 lines
259 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/final_countdown.xm",
|
|
))?;
|
|
let output = agb_xm_core::parse_module(&module);
|
|
|
|
Ok(())
|
|
}
|