mirror of https://github.com/go-python/gopy.git
updated to 19, gofmt test should now pass
This commit is contained in:
parent
fa2ae3371d
commit
d3e18ee5f4
10
doc.go
10
doc.go
|
@ -14,12 +14,12 @@ symbols. The exported symbols define the cross-language interface.
|
|||
The gopy tool generates both an API stub in Python, and binding code in
|
||||
Go. Start with a Go package:
|
||||
|
||||
package hi
|
||||
package hi
|
||||
|
||||
import "fmt"
|
||||
import "fmt"
|
||||
|
||||
func Hello(name string) {
|
||||
fmt.Println("Hello, %s!\n", name)
|
||||
}
|
||||
func Hello(name string) {
|
||||
fmt.Println("Hello, %s!\n", name)
|
||||
}
|
||||
*/
|
||||
package main
|
||||
|
|
Loading…
Reference in New Issue