mirror of
https://github.com/golang/go
synced 2024-11-18 23:14:43 -07:00
030b2cf115
Change-Id: Ifd9dd5684c8467442cb551a72b4d35ae6faed599 Reviewed-on: https://go-review.googlesource.com/c/tools/+/197158 Run-TryBot: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
12 lines
111 B
Plaintext
12 lines
111 B
Plaintext
-- gofmt --
|
|
package format //@format("package")
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
func goodbye() {
|
|
log.Printf("byeeeee")
|
|
}
|
|
|