1
2
3
4
5
6
7
8
9
10
11
//! A minimal example that outputs "hello world"

use bevy::prelude::*;

fn main() {
    App::new().add_systems(Update, hello_world_system).run();
}

fn hello_world_system() {
    println!("hello world");
}