2024 day 14

This commit is contained in:
2024-12-14 15:05:36 +01:00
parent 2567837aa1
commit 5e4d0b0bc4
6 changed files with 813 additions and 1 deletions

5
utils/log-lines.ts Normal file
View File

@@ -0,0 +1,5 @@
export function logLines(lines: Array<unknown>) {
for (const line of lines) {
console.log(line);
}
}