14 lines
159 B
Go
14 lines
159 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"gitea.ligthert.net/golang/rowboz/types"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
var pos Position
|
||
|
pos.x = 5
|
||
|
pos.y = 5
|
||
|
fmt.Println("Hello World")
|
||
|
}
|