You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
397 B
Swift

//
// Advent of Code 2018 "Day xx: Something Something"
//
import Foundation
class Template {
}
class Dayxx: AOCDay {
lazy var tests: (() -> ()) = dayxxTests
lazy var final: (() -> ()) = dayxxFinal
func dayxxTests() {
}
func dayxxFinal() {
let retVal = "None"
print("Answer to part 1 is: \(retVal)")
print("Answer to part 2 is: \(retVal)")
}
}