mirror of
https://github.com/golang/go.git
synced 2025-05-25 09:21:21 +00: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
|
|
}
|