Add support for the Go programming language.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Ian Lance Taylor 2010-06-10 01:13:31 +00:00
commit 5af2978f77
259 changed files with 16159 additions and 14 deletions

View file

@ -0,0 +1,19 @@
package main
import . "./smart_pointer_simple"
func main() {
f := NewFoo()
b := NewBar(f)
b.SetX(3)
if b.Getx() != 3 {
panic(0)
}
fp := b.X__deref__()
fp.SetX(4)
if fp.Getx() != 4 {
panic(0)
}
}