mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
8 lines
163 B
Rust
8 lines
163 B
Rust
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::build()
|
|
.add_default_plugins()
|
|
.add_system_fn("hello", |_| println!("hello world!"))
|
|
.run();
|
|
}
|