func fmt.Println

30 uses

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

	github.com/go-pg/migrations/v8
		collection.go#L402: 			fmt.Println("please provide migration description")
		collection.go#L417: 		fmt.Println("created new migration", filename)

	go/parser
		parser.go#L97: 	fmt.Println(a...)
		resolver.go#L74: 	fmt.Println(strings.Repeat(". ", r.depth) + r.sprintf(format, args...))

	go/printer
		printer.go#L110: 		fmt.Println(msg...)

	go/types
		check.go#L321: 			fmt.Println()
		check.go#L322: 			fmt.Println(msg)
		check.go#L385: 			fmt.Println()
		decl.go#L58: 			fmt.Println() // empty line between top-level objects for readability
		errors.go#L140: 	fmt.Println(sprintf(check.fset, check.qualifier, true, format, args...))
		initorder.go#L27: 		fmt.Println("Object dependency graph:")
		initorder.go#L41: 		fmt.Println()
		initorder.go#L43: 		fmt.Println("Transposed object dependency graph (functions eliminated):")
		initorder.go#L50: 		fmt.Println()
		initorder.go#L52: 		fmt.Println("Processing nodes:")
		initorder.go#L122: 		fmt.Println()
		initorder.go#L123: 		fmt.Println("Initialization order:")
		initorder.go#L127: 		fmt.Println()
		unify.go#L89: 	fmt.Println(strings.Repeat(".  ", u.depth) + sprintf(nil, nil, true, format, args...))

	testing
		benchmark.go#L673: 		fmt.Println(benchName)
		cover.go#L112: 		fmt.Println("coverage: [no statements]")
		testing.go#L1702: 		fmt.Println("-test.shuffle", n)
		testing.go#L1727: 			fmt.Println("FAIL")
		testing.go#L1735: 		fmt.Println("FAIL")
		testing.go#L1746: 		fmt.Println("PASS")
		testing.go#L1776: 			fmt.Println(test.Name)
		testing.go#L1781: 			fmt.Println(bench.Name)
		testing.go#L1786: 			fmt.Println(fuzzTarget.Name)
		testing.go#L1791: 			fmt.Println(example.Name)