func fmt.Fprint

15 uses

	fmt (current package)
		print.go#L230: func Fprint(w io.Writer, a ...interface{}) (n int, err error) {
		print.go#L242: 	return Fprint(os.Stdout, a...)

	flag
		flag.go#L535: 		fmt.Fprint(f.Output(), s, "\n")

	math/big
		intconv.go#L86: 		fmt.Fprint(s, "")

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

	src.elv.sh/pkg/cli/term
		writer.go#L59: 	fmt.Fprint(buf, "\r")
		writer.go#L192: 	fmt.Fprint(w.file, hideCursor)
		writer.go#L196: 	fmt.Fprint(w.file, showCursor)
		writer.go#L200: 	fmt.Fprint(w.file,

	src.elv.sh/pkg/parse
		error.go#L46: 				fmt.Fprint(sb, "; ")
		error.go#L63: 		fmt.Fprint(sb, "Multiple parse errors:")
		pprint.go#L89: 	fmt.Fprint(wr, "\n")

	src.elv.sh/pkg/shell
		signal_unix.go#L19: 		fmt.Fprint(stderr, sys.DumpStack())

	src.elv.sh/pkg/tt
		tt.go#L146: 		fmt.Fprint(&b, arg)