File: basic.go

package info (click to toggle)
tml 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: makefile: 16
file content (16 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import (
	"github.com/liamg/tml"
)

func main() {

	tml.Printf(
		"<red>%s</red> <yellow>%s</yellow> <green><bold>%s</bold></green>\n",
		"ERROR",
		"WARNING",
		"SUCCESS",
	)

}