├── .github └── workflows │ ├── bundle.yaml │ ├── generate-docs.yaml │ └── tests.yaml ├── .gitignore ├── LICENSE ├── README.md ├── ci └── all_tests.sh ├── examples ├── 2020 │ └── 01.roc └── input │ └── 2020_01.txt └── package ├── AoC.roc └── main.roc /.github/workflows/bundle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/.github/workflows/bundle.yaml -------------------------------------------------------------------------------- /.github/workflows/generate-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/.github/workflows/generate-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | examples/2020/01 2 | 3 | .DS_Store 4 | 5 | generated-docs/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/README.md -------------------------------------------------------------------------------- /ci/all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/ci/all_tests.sh -------------------------------------------------------------------------------- /examples/2020/01.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/examples/2020/01.roc -------------------------------------------------------------------------------- /examples/input/2020_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/examples/input/2020_01.txt -------------------------------------------------------------------------------- /package/AoC.roc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukewilliamboswell/aoc-template/HEAD/package/AoC.roc -------------------------------------------------------------------------------- /package/main.roc: -------------------------------------------------------------------------------- 1 | package [ AoC ] {} 2 | --------------------------------------------------------------------------------