hello_world/
hello_world.rs

1//! A minimal example that outputs "hello world"
2
3use bevy::prelude::*;
4
5fn main() {
6    App::new().add_systems(Update, hello_world_system).run();
7}
8
9fn hello_world_system() {
10    println!("hello world");
11}