You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: printf.go
+7-2
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,21 @@ package tml
2
2
3
3
import (
4
4
"fmt"
5
+
"io"
6
+
"os"
5
7
)
6
8
7
9
// Printf works like fmt.Printf, but adds the option of using tags to apply colour or text formatting to the written text. For example "<red>some red text</red>".
8
10
// A full list of tags is available here: https://github.com/liamg/tml
// Println works like fmt.Println, but adds the option of using tags to apply colour or text formatting to the written text. For example "<red>some red text</red>".
4
9
// A full list of tags is available here: https://github.com/liamg/tml
0 commit comments