mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
16 lines
243 B
Go
16 lines
243 B
Go
package main
|
|
|
|
import (
|
|
"github.com/wsxiaoys/terminal"
|
|
"github.com/wsxiaoys/terminal/color"
|
|
)
|
|
|
|
func main() {
|
|
terminal.Stdout.Color("y").
|
|
Print("Hello world").Nl().
|
|
Reset().
|
|
Colorf("@{kW}Hello world\n")
|
|
|
|
color.Print("@rHello world")
|
|
}
|