repo init with template for days

This commit is contained in:
2024-12-09 01:33:18 +01:00
commit 022a451f7a
6 changed files with 207 additions and 0 deletions

17
template/main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"fmt"
)
const DAY int = 00
func main() {
fmt.Println("||++++++++++++++++++++++++++++||")
fmt.Printf("|| AdventOfCode 2024 - Day %02d ||\n", DAY)
fmt.Println("||++++++++++++++++++++++++++++||\n")
original()
fmt.Println()
optimized()
}