Skip to content

Commit

Permalink
[TEST] Create a simple world with hello world
Browse files Browse the repository at this point in the history
  • Loading branch information
MrVyM committed Nov 27, 2023
1 parent 967a030 commit 25f3043
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
use bevy::prelude::*;

fn hello_world() {
println!("Hello World");
}
fn main() {
println!("Hello world!");
App::new().add_systems(Startup, hello_world).run();
}

0 comments on commit 25f3043

Please sign in to comment.