Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 605 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 605 Bytes

Advent of Code

My solutions for advent of code

How to run C++

C++ solutions use the Clang "shebang" line so you can run them as script. With clang installed, just do

cd 2022/day4
./solution.cpp

How to run D

Some solutions use the programming language D.

To run a solution, with D installed, just do

cd 2021/day4
./solution.d

or

cd 2021/day4
rdmd solution.d

Each script is self-compiling thanks to rdmd.

License

Code available under the MIT license, see LICENSE