1 2 3 4 5 6 7 8 9 10 11 12
package main import ( "fmt" "github.com/fatih/color" ) func main() { c := color.New(color.FgGreen) c.Println("Hello from Go integration test!") fmt.Println("SUCCESS: Go stack is working") }