bevy/examples/hello_world.rs

10 lines
206 B
Rust

use bevy::prelude::*;
fn main() {
App::build()
.add_default_plugins()
.add_system(|_: &mut World, _: &mut Resources| {
println!("hello world");
})
.run();
}