mirror of
https://github.com/vbatts/talks.git
synced 2024-11-16 05:28:37 +00:00
19 lines
167 B
Go
19 lines
167 B
Go
|
// +build ignore
|
||
|
|
||
|
package main
|
||
|
|
||
|
// START1 OMIT
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/foo/bar"
|
||
|
)
|
||
|
|
||
|
// STOP1 OMIT
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println(bar.Baz())
|
||
|
_ = os.FileInfo
|
||
|
}
|