mirror of
https://github.com/go-task/task.git
synced 2025-12-18 04:37:43 +01:00
14 lines
232 B
Go
14 lines
232 B
Go
|
|
package task
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (e *Executor) println(args ...interface{}) {
|
||
|
|
fmt.Fprintln(e.Stdout, args...)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *Executor) printfln(format string, args ...interface{}) {
|
||
|
|
fmt.Fprintf(e.Stdout, format+"\n", args...)
|
||
|
|
}
|