tangled
alpha
login
or
join now
tymek.me
/
aoc25
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
repo: initial commit
Tim Chmielecki
3 months ago
06582b3f
+10
3 changed files
expand all
collapse all
unified
split
.gitignore
Cargo.toml
src
main.rs
+1
.gitignore
···
1
1
+
/target
+6
Cargo.toml
···
1
1
+
[package]
2
2
+
name = "aoc25"
3
3
+
version = "0.1.0"
4
4
+
edition = "2024"
5
5
+
6
6
+
[dependencies]
+3
src/main.rs
···
1
1
+
fn main() {
2
2
+
println!("Hello, world!");
3
3
+
}