File: main.go

package info (click to toggle)
golang-pault-go-technicolor 0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76 kB
  • sloc: makefile: 5
file content (15 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main

import (
	"os"

	"pault.ag/go/technicolor"
)

func main() {
	output := technicolor.NewWriter(os.Stdout)
	output.Bold().Red().Printf("U")
	output.White().Printf("S")
	output.Cyan().Printf("A\n")
	output.ResetColor().Write([]byte{})
}