day1, part1

This commit is contained in:
efim
2023-12-01 14:01:02 +00:00
parent 4f286742bb
commit c1794a56ec
4 changed files with 1064 additions and 2 deletions

View File

@@ -1,8 +1,13 @@
package main
import "fmt"
import (
"fmt"
dayone "sunshine.industries/aoc2023/day1"
)
func main() {
s := "yoyo"
s := "yoyo!"
fmt.Printf("hello, %s\n", s)
dayone.Run()
}