func fmt.Fprintln

41 uses

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

	flag
		flag.go#L870: 		fmt.Fprintln(f.Output(), msg)
		flag.go#L893: 	fmt.Fprintln(f.Output(), err)

	net/http
		server.go#L2082: 	fmt.Fprintln(w, error)
		server.go#L2180: 		fmt.Fprintln(w, body)

	src.elv.sh/cmd/examples/widget
		main.go#L50: 		fmt.Fprintln(os.Stderr, err)

	src.elv.sh/pkg/buildinfo
		buildinfo.go#L39: 		fmt.Fprintln(fds[1], fullVersion)
		buildinfo.go#L47: 		fmt.Fprintln(fds[1], "Version:", fullVersion)
		buildinfo.go#L48: 		fmt.Fprintln(fds[1], "Go version:", runtime.Version())
		buildinfo.go#L49: 		fmt.Fprintln(fds[1], "Reproducible build:", Reproducible)

	src.elv.sh/pkg/diag
		show_error.go#L12: 		fmt.Fprintln(w, shower.Show(""))

	src.elv.sh/pkg/eval
		builtin_fn_cmd.go#L118: 			fmt.Fprintln(os.Stderr, err)
		builtin_fn_io.go#L717: 		fmt.Fprintln(out, vals.ToString(v))
		builtin_fn_misc.go#L476: 		fmt.Fprintln(fm.OutputFile(), dt)
		compiler.go#L154: 		fmt.Fprintln(cp.warn, err.Show(""))
		eval.go#L201: 				fmt.Fprintln(os.Stderr, name, "hook must be callable")
		eval.go#L207: 				fmt.Fprintln(os.Stderr, err)
		eval.go#L501: 				fmt.Fprintln(cfg.Ports[2].File,

	src.elv.sh/pkg/prog
		prog.go#L88: 	fmt.Fprintln(out, "Usage: elvish [flags] [script]")
		prog.go#L89: 	fmt.Fprintln(out, "Supported flags:")
		prog.go#L108: 			fmt.Fprintln(fds[2], "Warning: cannot create CPU profile:", err)
		prog.go#L109: 			fmt.Fprintln(fds[2], "Continuing without CPU profiling.")
		prog.go#L123: 			fmt.Fprintln(fds[2], err)
		prog.go#L135: 		fmt.Fprintln(fds[2], "program bug: no suitable subprogram")
		prog.go#L144: 		fmt.Fprintln(fds[2], msg)

	src.elv.sh/pkg/shell
		interact.go#L82: 			fmt.Fprintln(fds[2], "Editor error:", err)
		interact.go#L84: 				fmt.Fprintln(fds[2], "Falling back to basic line editor")
		interact.go#L87: 				fmt.Fprintln(fds[2], "Don't know what to do, pid is", os.Getpid())
		interact.go#L88: 				fmt.Fprintln(fds[2], "Restarting editor in", cooldown)
		paths.go#L45: 			fmt.Fprintln(stderr, "warning: cannot get executable path:", err)
		runtime.go#L75: 			fmt.Fprintln(stderr, "Cannot connect to daemon:", err)
		runtime.go#L76: 			fmt.Fprintln(stderr, daemonWontWorkMsg)
		runtime.go#L93: 			fmt.Fprintln(stderr,
		runtime.go#L123: 		fmt.Fprintln(stderr, "Daemon is outdated; going to kill old daemon and re-spawn")

	src.elv.sh/pkg/store
		temp_store.go#L25: 			fmt.Fprintln(os.Stderr, "failed to remove temp file:", err)

	testing
		benchmark.go#L595: 			fmt.Fprintln(b.w, results)
		run_example.go#L30: 		fmt.Fprintln(os.Stderr, err)
		testing.go#L1399: 		fmt.Fprintln(os.Stderr, "testing: -parallel can only be given a positive integer")
		testing.go#L1421: 		fmt.Fprintln(os.Stderr, "testing: warning: no tests to run")
		testing.go#L1483: 		fmt.Fprintln(os.Stderr, "testing: warning: no tests to run")