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:
parent
09f14197ac
commit
5af2978f77
259 changed files with 16159 additions and 14 deletions
25
Examples/go/funcptr/runme.go
Normal file
25
Examples/go/funcptr/runme.go
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
. "./example"
|
||||
)
|
||||
|
||||
func main() {
|
||||
a := 37
|
||||
b := 42
|
||||
|
||||
// Now call our C function with a bunch of callbacks
|
||||
|
||||
fmt.Println("Trying some C callback functions")
|
||||
fmt.Println(" a = ", a)
|
||||
fmt.Println(" b = ", b)
|
||||
fmt.Println(" ADD(a,b) = ", Do_op(a, b, ADD))
|
||||
fmt.Println(" SUB(a,b) = ", Do_op(a, b, SUB))
|
||||
fmt.Println(" MUL(a,b) = ", Do_op(a, b, MUL))
|
||||
|
||||
fmt.Println("Here is what the C callback function classes are called in Go")
|
||||
fmt.Println(" ADD = ", ADD)
|
||||
fmt.Println(" SUB = ", SUB)
|
||||
fmt.Println(" MUL = ", MUL)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue