mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
12 lines
No EOL
207 B
Rust
12 lines
No EOL
207 B
Rust
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::build()
|
|
.add_default_plugins()
|
|
.add_system(hello_world_system.system())
|
|
.run();
|
|
}
|
|
|
|
fn hello_world_system() {
|
|
println!("hello world");
|
|
} |