mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-17 07:27:30 +01:00
11 lines
145 B
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;
|
|
}
|