AdventOfCode2021/source/app.d

8 lines
68 B
D
Raw Normal View History

2021-12-01 07:39:14 +00:00
import std.stdio;
2021-12-07 06:10:08 +00:00
import day7.part1;
2021-12-01 07:39:14 +00:00
void main() {
2021-12-07 06:10:08 +00:00
crabFuel();
2021-12-01 07:39:14 +00:00
}