mirror of
https://github.com/golang/go
synced 2024-11-05 19:56:11 -07:00
17 lines
145 B
Go
17 lines
145 B
Go
|
// compile
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
var _ = fmt.Printf
|
||
|
var _ io.Reader
|
||
|
|
||
|
func main() {
|
||
|
greeting := "hello, world"
|
||
|
_ = greeting
|
||
|
}
|