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
26
Examples/go/multimap/runme.go
Normal file
26
Examples/go/multimap/runme.go
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
. "./example"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Call our gcd() function
|
||||
x := 42
|
||||
y := 105
|
||||
g := Gcd(x, y)
|
||||
fmt.Println("The gcd of ", x, " and ", y, " is ", g)
|
||||
|
||||
// Call the gcdmain() function
|
||||
args := []string{"gcdmain", "42", "105"}
|
||||
Gcdmain(args)
|
||||
|
||||
// Call the count function
|
||||
fmt.Println(Count("Hello World", 'l'))
|
||||
|
||||
// Call the capitalize function
|
||||
capitalizeMe := []string{"hello world"}
|
||||
Capitalize(capitalizeMe)
|
||||
fmt.Println(capitalizeMe[0])
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue