print useful info and force quite app
(s string)
| 28 | |
| 29 | // print useful info and force quite app |
| 30 | func usefulInfo(s string) { |
| 31 | color.Set(color.FgHiYellow) |
| 32 | fmt.Println(s) |
| 33 | color.Unset() |
| 34 | } |
| 35 | |
| 36 | // I2B covert int to bool, if i >0:true, else false |
| 37 | func I2B(i int) bool { |
no outgoing calls