Skip to content

Instantly share code, notes, and snippets.

@ik5
Last active April 8, 2024 14:25
Show Gist options
  • Star 91 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save ik5/d8ecde700972d4378d87 to your computer and use it in GitHub Desktop.
Save ik5/d8ecde700972d4378d87 to your computer and use it in GitHub Desktop.
Simple golang expirement with ANSI colors
package main
// http://play.golang.org/p/jZ5pa944O1 <- will not display the colors
import "fmt"
const (
InfoColor = "\033[1;34m%s\033[0m"
NoticeColor = "\033[1;36m%s\033[0m"
WarningColor = "\033[1;33m%s\033[0m"
ErrorColor = "\033[1;31m%s\033[0m"
DebugColor = "\033[0;36m%s\033[0m"
)
func main() {
fmt.Printf(InfoColor, "Info")
fmt.Println("")
fmt.Printf(NoticeColor, "Notice")
fmt.Println("")
fmt.Printf(WarningColor, "Warning")
fmt.Println("")
fmt.Printf(ErrorColor, "Error")
fmt.Println("")
fmt.Printf(DebugColor, "Debug")
fmt.Println("")
}
@andyfeller
Copy link

❤️

@DennisPing
Copy link

DennisPing commented Apr 11, 2022

Thank you. Very helpful for go test. Anything that fails prints Red so I can easily spot it. (on Linux)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment