Adding program timer to the program #1

Merged
eoghanconlon73 merged 3 commits from timer into main 2024-08-23 11:35:37 +00:00
Showing only changes of commit 09d91fd001 - Show all commits

View file

@ -3,7 +3,7 @@ package main
import "fmt"
func main() {
input := FileParse("input/test.txt")
input := FileParse("input/day01/sample.txt")
for _, s := range input {
fmt.Println(s)
}