tutorial
Bevy Application Bootstrap
Let’s get started with a new application where we will implement out Text Gem game framework. You should be somewhat familiar with developing Rust if you want to follow along. If you don’t know Rust well, this could be a good way to start learning! Prerequisites You need to install Rust using rustup. Once you have Rust installed, we’ll create a new project to start coding. Terminal 1 2 3 4 5 6 7 8 # Create a new Rust project cargo new textgem # Go into the newly-created project folder cd textgem # Run the Hello, World!