mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
aefe1f0739
Co-authored-by: Mike <mike.hsu@gmail.com>
9 lines
157 B
Rust
9 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");
|
|
}
|