go-ansi

September 16, 2012 ยท View on GitHub

Installing

    $ go get github.com/str1ngs/ansi/color

Example

    package main

    import (
        "fmt"
        . "github.com/str1ngs/ansi/color"
    )

    func main() {
        fmt.Printf("%s\n", Blue("techno color"))
    }