diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2022-12-20 14:08:29 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2022-12-20 14:08:29 +0000 |
| commit | cc5b39318201ffbea172195cbd2ac28cb48f6042 (patch) | |
| tree | 9ea07ae0754133b4f31160181aa343097d221e03 /day02a | |
| download | advent_of_code_2022-cc5b39318201ffbea172195cbd2ac28cb48f6042.tar.gz advent_of_code_2022-cc5b39318201ffbea172195cbd2ac28cb48f6042.zip | |
Initial commit
Diffstat (limited to 'day02a')
| -rw-r--r-- | day02a/Cargo.toml | 8 | ||||
| -rw-r--r-- | day02a/src/main.rs | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/day02a/Cargo.toml b/day02a/Cargo.toml new file mode 100644 index 0000000..9def138 --- /dev/null +++ b/day02a/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day02a" +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/day02a/src/main.rs b/day02a/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/day02a/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |
