ludus/src/main.rs
Scott Richmond f570cc3154 maybe figure out the wasm thing?
Former-commit-id: 44f7ce7b06
2025-06-25 22:56:39 -04:00

11 lines
213 B
Rust

use rudus::ludus;
use std::env;
use std::fs;
pub fn main() {
env::set_var("RUST_BACKTRACE", "1");
let src = fs::read_to_string("sandbox.ld").unwrap();
let json = ludus(src);
println!("{json}");
}