Skip to content

Commit

Permalink
add printf to out
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskite committed Feb 16, 2017
1 parent 580b4a6 commit 6056437
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions out/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ func Println(a ...interface{}) (n int, err error) {
return fmt.Println(a...)
}

func Printf(format string, a ...interface{}) (n int, err error) {
return fmt.Printf(format, a...)
}

func Info(a ...interface{}) (n int, err error) {
return colorPrintln(color.FgCyan, a...)
}
Expand Down

0 comments on commit 6056437

Please sign in to comment.