10 lines
179 B
Go
10 lines
179 B
Go
|
package aoc2022
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func day05() {
|
||
|
//in := input.GetInput("input/2022/test")
|
||
|
//in := input.GetInput("input/2022/05")
|
||
|
fmt.Println("2022-05 is not implemented yet")
|
||
|
}
|