10 lines
157 B
Rust
10 lines
157 B
Rust
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::new().add_systems(Update, hello_world_system).run();
|
|
}
|
|
|
|
fn hello_world_system() {
|
|
println!("hello world");
|
|
}
|