mirror of
https://github.com/ershisan99/advent-of-code.git
synced 2025-12-16 12:32:49 +00:00
6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
export function logLines(lines: Array<unknown>) {
|
|
for (const line of lines) {
|
|
console.log(line);
|
|
}
|
|
}
|