3dtrial/go1/main.go

15 lines
172 B
Go
Raw Normal View History

2024-07-16 21:00:22 +00:00
package main
import (
"fmt"
"github.com/ungerik/go3d/vec3"
)
func main() {
fmt.Printf("Hello world")
thing := vec3.T{
0, 0, 0,
}
fmt.Printf("Thing: %v", thing)
}