Files
kiss-vscode/projects/_standalone/aoc/src/year2021/Day5.hx

11 lines
115 B
Haxe

package year2021;
typedef Line = {
x1:Int,
y1:Int,
x2:Int,
y2:Int
};
typedef Point = Array<Int>;