Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/go/template_rename_runme.go
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

17 lines
240 B
Go

package main
import "./template_rename"
func main() {
i := template_rename.NewIFoo()
d := template_rename.NewDFoo()
_ = i.Blah_test(4)
_ = i.Spam_test(5)
_ = i.Groki_test(6)
_ = d.Blah_test(7)
_ = d.Spam(8)
_ = d.Grok_test(9)
}