use bevy::prelude::*; fn gamarjoba() { println!("Gamarjoba, munde!"); } fn main() { App::new() .add_system(gamarjoba) .run(); }