Compare commits

...

2 Commits

Author SHA1 Message Date
900ddb6bb2
Merge branch 'main' of phlaym.net:phlaym/aoc2021 2021-12-05 11:44:06 +01:00
96cf4aff3b
Reorganised packages 2021-12-05 11:43:49 +01:00
2 changed files with 14 additions and 2 deletions

View File

@ -6,6 +6,7 @@
// //
import Foundation import Foundation
import Runner
struct Line: CustomStringConvertible { struct Line: CustomStringConvertible {
let from: Point let from: Point
@ -79,7 +80,7 @@ struct Field: CustomStringConvertible {
} }
} }
struct Day05 { struct Day05: Runnable {
let inputPath: String let inputPath: String
func run() { func run() {

11
Sources/05/main.swift Normal file
View File

@ -0,0 +1,11 @@
//
// File.swift
//
//
// Created by Max Nuding on 05.12.21.
//
import Foundation
import Runner
Runner(target: Day05.self, day: "05").run()