func fmt.Printf

10 uses

	fmt (current package)
		print.go#L212: func Printf(format string, a ...interface{}) (n int, err error) {

	src.elv.sh/pkg/sys
		winsize_unix.go#L24: 		fmt.Printf("error in winSize: %v", err)

	testing
		benchmark.go#L654: 			fmt.Printf("goos: %s\n", runtime.GOOS)
		benchmark.go#L655: 			fmt.Printf("goarch: %s\n", runtime.GOARCH)
		benchmark.go#L657: 				fmt.Printf("pkg: %s\n", b.importPath)
		benchmark.go#L660: 				fmt.Printf("cpu: %s\n", cpu)
		cover.go#L115: 	fmt.Printf("coverage: %.1f%% of statements%s\n", 100*float64(active)/float64(total), cover.CoveredPackages)
		example.go#L83: 		fmt.Printf("--- FAIL: %s (%s)\n%s", eg.Name, dstr, fail)
		example.go#L86: 		fmt.Printf("--- PASS: %s (%s)\n", eg.Name, dstr)
		run_example.go#L23: 		fmt.Printf("=== RUN   %s\n", eg.Name)