Files
another-boids-in-rust/vendor/bevy/examples/hello_world.rs

12 lines
207 B
Rust

//! A minimal example that outputs "hello world"
use bevy::prelude::*;
fn main() {
App::new().add_systems(Update, hello_world_system).run();
}
fn hello_world_system() {
println!("hello world");
}