var os.Stdout

13 uses

	os (current package)
		file.go#L65: 	Stdout = NewFile(uintptr(syscall.Stdout), "/dev/stdout")

	fmt
		print.go#L213: 	return Fprintf(os.Stdout, format, a...)
		print.go#L242: 	return Fprint(os.Stdout, a...)
		print.go#L274: 	return Fprintln(os.Stdout, a...)

	src.elv.sh/cmd/elvish
		main.go#L18: 		[3]*os.File{os.Stdin, os.Stdout, os.Stderr}, os.Args,

	src.elv.sh/cmd/examples/e3bc/bc
		bc.go#L50: 		os.Stdout.Write([]byte{b})

	src.elv.sh/cmd/withweb/elvish
		main.go#L17: 		[3]*os.File{os.Stdin, os.Stdout, os.Stderr}, os.Args,

	src.elv.sh/pkg/eval
		port.go#L220: 	return PortsFromFiles([3]*os.File{os.Stdin, os.Stdout, os.Stderr}, prefix)

	testing
		benchmark.go#L535: 			w:     os.Stdout,
		run_example.go#L27: 	stdout := os.Stdout
		run_example.go#L33: 	os.Stdout = w
		run_example.go#L55: 		os.Stdout = stdout
		testing.go#L1502: 					w:       os.Stdout,