5 lines
89 B
Rust
5 lines
89 B
Rust
use bevy::prelude::*;
|
|
fn main() {
|
|
App::new().run();
|
|
println!("Hello, world!");
|
|
}
|