updated to 19, gofmt test should now pass

This commit is contained in:
Randall C. O'Reilly 2022-11-15 02:54:30 -08:00
parent fa2ae3371d
commit d3e18ee5f4
1 changed files with 5 additions and 5 deletions

10
doc.go
View File

@ -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