func fmt.Print

10 uses

	fmt (current package)
		print.go#L271: func Print(a ...any) (n int, err error) {

	go/parser
		parser.go#L89: 		fmt.Print(dots)
		parser.go#L93: 	fmt.Print(dots[0:i])

	go/printer
		printer.go#L101: 		fmt.Print(p.pos.String() + ": ")

	testing
		testing.go#L1070: 				fmt.Print(c.decorate(s, depth+1))
		testing.go#L2154: 				fmt.Print(chatty.prefix(), "FAIL: package testing must run tests\n")
		testing.go#L2160: 			fmt.Print(chatty.prefix(), "testing: race detected outside of test execution\n")
		testing.go#L2164: 			fmt.Print(chatty.prefix(), "FAIL\n")
		testing.go#L2172: 		fmt.Print(chatty.prefix(), "FAIL\n")
		testing.go#L2183: 		fmt.Print(chatty.prefix(), "PASS\n")