diff --git a/2022/day14/Cargo.toml b/2022/day14/Cargo.toml new file mode 100644 index 0000000..85aa832 --- /dev/null +++ b/2022/day14/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "day14" +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/2022/day14/example.txt b/2022/day14/example.txt new file mode 100644 index 0000000..4e87bb5 --- /dev/null +++ b/2022/day14/example.txt @@ -0,0 +1,2 @@ +498,4 -> 498,6 -> 496,6 +503,4 -> 502,4 -> 502,9 -> 494,9 diff --git a/2022/day14/src/main.rs b/2022/day14/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/2022/day14/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}