From d3e18ee5f45fac9ca1f4c4e8a9c52b9911e22a58 Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Tue, 15 Nov 2022 02:54:30 -0800 Subject: [PATCH] updated to 19, gofmt test should now pass --- doc.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc.go b/doc.go index 4116741..2bd1364 100644 --- a/doc.go +++ b/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