Advent-of-Nix-2024/template/default.nix

12 lines
202 B
Nix
Raw Normal View History

2024-12-03 10:51:06 +01:00
{ lib, utils, ... }:
with lib;
with builtins;
with utils;
let
records = map (l: map toInt (splitWhitespace l)) (readLines ./input);
lines = readLines ./input;
in {
part1 = null;
part2 = null;
}