This commit is contained in:
2025-03-10 21:29:14 +02:00
commit 28033bbe00
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.idea
boot-dev-pokedex

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/rdarius/boot-dev-pokedex
go 1.23.6

9
main.go Normal file
View File

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