aboutsummaryrefslogtreecommitdiff
path: root/src/2016/day8/aoc.cpp
blob: fd56a513b513f29dbf0f566d4b87d19640a986e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "aoc.h"

namespace aoc2016 {

int day8(line_view file) {
  grid<5, 6> g;
  g.set(2, 2);
  return 0;
}

} // namespace aoc2016