PathrockNetwork Gno Explorer
☀
Home
Blocks
Transactions
Realms
Packages
Validators
Analytics
Search block height, transaction hash, address, or realm/package path
Search
☀
gno.land/p/moul/printfdebugging/v0
⧉
Package
Open in gnoweb ↗
Overview
Kind
Pure package
Name
v0
Namespace
moul / printfdebugging
Files
4
(README)
(gnomod.toml)
Exported functions
n/a — not supported for pure packages by the node (vm/qfuncs)
Module
gno.land/p/moul/printfdebugging/v0
gno
0.9
Files (4)
README.md
markdown
gnomod.toml
toml
color.gno
gno
printfdebugging.gno
gno
printfdebugging.gno
gno
⧉
1
// this package is a joke... or not.
2
package
printfdebugging
3
4
import
(
5
"strings"
6
7
"gno.land/p/nt/ufmt/v0"
8
)
9
10
func
BigRedLine(args ...string) {
11
println(ufmt.Sprintf(
"%s[%dm####################################%s[%dm %s"
,
12
Escape,
int
(BgRed), Escape,
int
(Reset),
13
strings.Join(args,
" "
),
14
))
15
}
16
17
func
Success() {
18
println(
" \033[31mS\033[33mU\033[32mC\033[36mC\033[34mE\033[35mS\033[31mS\033[0m "
)
19
}
20
Functions
not supported for pure packages by the node (vm/qfuncs)
Signatures reconstructed verbatim from vm/qfuncs — interface params keep their inline definitions.