generated from ElnuDev/rust-project
8 lines
147 B
Rust
8 lines
147 B
Rust
use renrs;
|
|
|
|
fn main() {
|
|
let commands = renrs::parse_file("demo.rpy");
|
|
for command in commands {
|
|
println!("{:?}", command);
|
|
}
|
|
}
|