commit 31b0f83c1b10d94aca960431428b139ecb37eeb9 Author: LordMathis Date: Fri Dec 1 14:58:42 2023 +0100 Initial commit diff --git a/01-trebuchet/Cargo.toml b/01-trebuchet/Cargo.toml new file mode 100644 index 0000000..5d49fb2 --- /dev/null +++ b/01-trebuchet/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "trebuchet" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/01-trebuchet/src/main.rs b/01-trebuchet/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/01-trebuchet/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}