PageRenderTime 46ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/globals/format.go

https://github.com/ernestoalejo/water
Go | 13 lines | 10 code | 3 blank | 0 comment | 0 complexity | 77e19a74f6a965395abaeba2ec927dba MD5 | raw file
  1. package globals
  2. import (
  3. "fmt"
  4. )
  5. func Print(format string, args ...interface{}) {
  6. fmt.Printf(format, args...)
  7. }
  8. func Println(args ...interface{}) {
  9. fmt.Println(args...)
  10. }