10 lines
150 B
Rust
10 lines
150 B
Rust
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::build().add_system(hello_world_system).run();
|
|
}
|
|
|
|
fn hello_world_system() {
|
|
println!("hello world");
|
|
}
|