func fmt.Fprint

17 uses

	fmt (current package)
		print.go#L260: func Fprint(w io.Writer, a ...any) (n int, err error) {
		print.go#L272: 	return Fprint(os.Stdout, a...)

	flag
		flag.go#L640: 		fmt.Fprint(f.Output(), b.String(), "\n")

	go.pact.im/x/goupdate
		main.go#L44: 		fmt.Fprint(os.Stderr, usage)

	go.uber.org/zap/zapcore
		console_encoder.go#L108: 		fmt.Fprint(line, arr.elems[i])

	go/types
		errors.go#L95: 			fmt.Fprint(&buf, "\n\t")

	golang.org/x/tools/go/types/typeutil
		map.go#L155: 	fmt.Fprint(&buf, "{")
		map.go#L158: 		fmt.Fprint(&buf, sep)
		map.go#L160: 		fmt.Fprint(&buf, key)
		map.go#L165: 	fmt.Fprint(&buf, "}")

	golang.org/x/tools/internal/event/core
		event.go#L40: 		fmt.Fprint(f, ev.at.Format("2006/01/02 15:04:05 "))

	golang.org/x/tools/internal/event/keys
		keys.go#L31: 	fmt.Fprint(w, k.From(l))

	google.golang.org/grpc
		trace.go#L102: 		fmt.Fprint(&line, f.deadline)

	math/big
		intconv.go#L85: 		fmt.Fprint(s, "<nil>")

	net/http/pprof
		pprof.go#L113: 	fmt.Fprint(w, strings.Join(os.Args, "\x00"))

	runtime/pprof
		pprof.go#L965: 		fmt.Fprint(w, "\n")

	text/template
		exec.go#L1107: 	_, err := fmt.Fprint(s.wr, iface)