Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/examples/hello_world.rs
6584 views
1
//! A minimal example that outputs "hello world"
2
3
use bevy::prelude::*;
4
5
fn main() {
6
App::new().add_systems(Update, hello_world_system).run();
7
}
8
9
fn hello_world_system() {
10
println!("hello world");
11
}
12
13