10 lines
151 B
Go
10 lines
151 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"gitlab.com/stvnliu/ai_game/tests"
|
|
)
|
|
func main() {
|
|
fmt.Println("What's up bro")
|
|
fmt.Println(tests.DoThis("Yo"))
|
|
}
|