MCPcopy
hub / github.com/github/git-sizer / Print

Function Print

internal/pipe/print.go:9–17  ·  view source on GitHub ↗
(a ...interface{})

Source from the content-addressed store, hash-verified

7)
8
9func Print(a ...interface{}) Stage {
10 return Function(
11 "print",
12 func(_ context.Context, _ Env, _ io.Reader, stdout io.Writer) error {
13 _, err := fmt.Fprint(stdout, a...)
14 return err
15 },
16 )
17}
18
19func Println(a ...interface{}) Stage {
20 return Function(

Callers 1

TestFunctionFunction · 0.92

Calls 1

FunctionFunction · 0.85

Tested by 1

TestFunctionFunction · 0.74