Advent of code 2025
Find a file
2025-12-07 15:50:43 +01:00
01 wip 2025-12-04 18:10:02 +01:00
02 wip 2025-12-06 20:03:25 +01:00
03 wip 2025-12-06 20:03:25 +01:00
04 just began completely from scratch, turns out it was easier.. 2025-12-06 16:45:50 +01:00
05 wip 2025-12-07 15:50:43 +01:00
06 wip 2025-12-06 15:21:59 +01:00
README.md wip 2025-12-07 15:50:43 +01:00

Advent of Code 2025

lua

For the lua solutions, i use a small library i maintain and use only by myself.

This library gets me access to get a table out of a file by reading all the lines in the file and adding them up with table.insert() and returns the table created.

local aoc = require("pika.aoc")
local tbl = aoc.file_to_tbl("../ex-input")

tbl is now the content of "../ex-input"

require("pika.std")
local str = world
printf("Hello, %s\n", str)

printf() is just the normal printf function you are used to!