pull in bevy dep

This commit is contained in:
Mike Smith
2026-03-08 17:45:51 -04:00
parent c73c71095a
commit 483b8b6498
6 changed files with 5993 additions and 1 deletions

6
hello_world/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "hello_world"
version = "0.1.0"
edition = "2024"
[dependencies]

3
hello_world/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}