mirror of
https://github.com/golang/go
synced 2024-11-19 08:44:39 -07:00
14 lines
141 B
Plaintext
14 lines
141 B
Plaintext
|
-- goimports --
|
||
|
package imports //@import("package")
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
func goodbye() {
|
||
|
fmt.Printf("HI")
|
||
|
log.Printf("byeeeee")
|
||
|
}
|
||
|
|