1
0
mirror of https://github.com/golang/go synced 2024-09-30 19:28:32 -06:00
go/doc/progs/unused2.go
2013-01-22 14:00:10 -05:00

17 lines
145 B
Go

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