waf/demos/go/main.go

11 lines
145 B
Go

// By: Tom Wambold <tom5760@gmail.com>
package main
import "other"
func main() {
a := other.Vector3 {1, 2, 3};
a.Size();
return;
}