12 lines
207 B
Rust
12 lines
207 B
Rust
//! 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");
|
|
}
|