quran-go

Read Qur'an right in the terminal.
git clone http://git.hanabi.in/repos/quran-go.git
Log | Files | Refs | README | LICENSE

err.go (114B)


      1 package print
      2 
      3 import (
      4 	"fmt"
      5 	"os"
      6 )
      7 
      8 func Err(err error) {
      9 	fmt.Fprintln(os.Stderr, err.Error())
     10 	os.Exit(1)
     11 }