Added "Example" Project

This commit is contained in:
Maddox Werts 2025-02-10 10:23:07 -05:00
parent 8579b3731b
commit 05a711ac52
2 changed files with 9 additions and 0 deletions

6
project/Cargo.toml Normal file
View file

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

3
project/src/main.rs Normal file
View file

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