MCPcopy
hub / github.com/pterm/pterm / Println

Function Println

print.go:59–61  ·  view source on GitHub ↗

Println formats using the default formats for its operands and writes to standard output. Spaces are always added between operands and a newline is appended. It returns the number of bytes written and any write error encountered.

(a ...any)

Source from the content-addressed store, hash-verified

57// Spaces are always added between operands and a newline is appended.
58// It returns the number of bytes written and any write error encountered.
59func Println(a ...any) {
60 Print(Sprintln(a...))
61}
62
63// Printf formats according to a format specifier and writes to standard output.
64// It returns the number of bytes written and any write error encountered.

Callers 15

TestPrintlnFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92
mainFunction · 0.92

Calls 2

PrintFunction · 0.85
SprintlnFunction · 0.85

Tested by 1

TestPrintlnFunction · 0.74

Used in the wild real call sites across dependent graphs

searching dependent graphs…