commit c35ba20cc38774f2c4f857300e1d18a55d8f0114 Author: Rekai Musuka Date: Wed Dec 1 00:05:38 2021 -0400 Initial Commit diff --git a/rust/2021/Cargo.toml b/rust/2021/Cargo.toml new file mode 100644 index 0000000..3da452d --- /dev/null +++ b/rust/2021/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "advent-of-code-2021" +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/rust/2021/src/main.rs b/rust/2021/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/rust/2021/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}