1 2 3 4 5 6 7 8 9
use bevy::prelude::*; fn main() { App::new().add_system(hello_world_system).run(); } fn hello_world_system() { println!("hello world"); }