func fmt.Println

28 uses

	fmt (current package)
		print.go#L313: 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#L94: 	fmt.Println(a...)
		resolver.go#L76: 	fmt.Println(strings.Repeat(". ", r.depth) + r.sprintf(format, args...))

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

	go/types
		check.go#L477: 			fmt.Println()
		check.go#L478: 			fmt.Println(msg)
		check.go#L553: 			fmt.Println()
		decl.go#L54: 			fmt.Println() // empty line between top-level objects for readability
		format.go#L100: 	fmt.Println(sprintf(check.fset, check.qualifier, true, format, args...))
		infer.go#L231: 				fmt.Println()
		initorder.go#L33: 		fmt.Println("Object dependency graph:")
		initorder.go#L47: 		fmt.Println()
		initorder.go#L49: 		fmt.Println("Transposed object dependency graph (functions eliminated):")
		initorder.go#L56: 		fmt.Println()
		initorder.go#L58: 		fmt.Println("Processing nodes:")
		initorder.go#L128: 		fmt.Println()
		initorder.go#L129: 		fmt.Println("Initialization order:")
		initorder.go#L133: 		fmt.Println()
		unify.go#L148: 	fmt.Println(strings.Repeat(".  ", u.depth) + sprintf(nil, nil, true, format, args...))

	testing
		benchmark.go#L843: 			fmt.Println(benchName)
		cover.go#L120: 		fmt.Println("coverage: [no statements]")
		testing.go#L2125: 		fmt.Println("-test.shuffle", n)
		testing.go#L2213: 			fmt.Println(test.Name)
		testing.go#L2218: 			fmt.Println(bench.Name)
		testing.go#L2223: 			fmt.Println(fuzzTarget.Name)
		testing.go#L2228: 			fmt.Println(example.Name)