Testing, trying

This commit is contained in:
2023-12-01 19:10:47 +01:00
parent 8b8e396710
commit 11f2a3266a
8 changed files with 70 additions and 11 deletions

7
game/director.go Normal file
View File

@ -0,0 +1,7 @@
package game
import "fmt"
func director() {
fmt.Println("This is the director.")
}

View File

@ -1 +0,0 @@
Left empty on purpose.

7
game/init.go Normal file
View File

@ -0,0 +1,7 @@
package game
import "fmt"
func init() {
fmt.Println("This is a thing!")
}