1
0
mirror of https://github.com/golang/go synced 2024-09-30 22:18:32 -06:00
go/doc/progs/unused2.go

17 lines
145 B
Go
Raw Normal View History

// compile
package main
import (
"fmt"
"io"
)
var _ = fmt.Printf
var _ io.Reader
func main() {
greeting := "hello, world"
_ = greeting
}