use bevy::prelude::*; fn main() { App::new().add_system(hello_world_system.system()).run(); } fn hello_world_system() { println!("hello world"); }