master
Araozu 2024-02-24 19:55:09 -05:00
commit 37175fcbc1
3 changed files with 12 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module advent-20
go 1.22

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}