git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12108 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
150 B
Go
10 lines
150 B
Go
package main
|
|
|
|
import "./sneaky1"
|
|
|
|
func main() {
|
|
_ = sneaky1.Add(3, 4)
|
|
_ = sneaky1.Subtract(3, 4)
|
|
_ = sneaky1.Mul(3, 4)
|
|
_ = sneaky1.Divide(3, 4)
|
|
}
|