This website requires JavaScript.
Explore
Help
Sign In
andrew
/
AdventOfCode2021
Watch
1
Star
0
Fork
You've already forked AdventOfCode2021
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
f4b4845e38
AdventOfCode2021
/
source
/
app.d
10 lines
103 B
D
Raw
Normal View
History
Unescape
Escape
Added day 1.
2021-12-01 07:39:14 +00:00
import
std.stdio
;
import
day1.part1
;
import
day1.part2
;
Added day 2.
2021-12-02 13:29:16 +00:00
import
day2.part1
;
Added day 1.
2021-12-01 07:39:14 +00:00
void
main
(
)
{
Added day 2.
2021-12-02 13:29:16 +00:00
dive2
(
)
;
Added day 1.
2021-12-01 07:39:14 +00:00
}