tictactoe-in-go/main.go

12 lines
180 B
Go
Raw Normal View History

package main
import (
"tictactoe/game"
)
func main() {
// calls the CreateWindow function and runs that window
window := game.CreateWindow()
window.ShowAndRun()
}