--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Here is the code I got:
const CLR_0 = "\x1b[30;1m"
const CLR_R = "\x1b[31;1m"
const CLR_G = "\x1b[32;1m"
const CLR_Y = "\x1b[33;1m"
const CLR_B = "\x1b[34;1m"
const CLR_M = "\x1b[35;1m"
const CLR_C = "\x1b[36;1m"
const CLR_W = "\x1b[37;1m"
const CLR_N = "\x1b[0m"
fmt.Printf("%s%s%s\t%s%s%s\t%s%s%s\t%s%s%s\t%s%s%s\n",
CLR_G, sl1[0], CLR_N,
CLR_Y, sl1[1], CLR_N,
CLR_B, sl1[2], CLR_N,
CLR_W, sl1[3], CLR_N,
CLR_M, sl1[4], CLR_N,
fmt.Priintf("neutral, red %d, cyan %d, bold %s", Red(35), Cyan(100), Bold("bold"))
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.