waf/demos/go/main.go

11 lines
145 B
Go
Raw Normal View History

2011-09-10 11:13:51 +02:00
// By: Tom Wambold <tom5760@gmail.com>
package main
import "other"
func main() {
a := other.Vector3 {1, 2, 3};
a.Size();
return;
}