text/utils.go

11 lines
124 B
Go
Raw Normal View History

2024-02-16 15:56:50 +01:00
// utils.go
package text
import (
"fmt"
)
func Var(name string) string {
return fmt.Sprintf("%c{%s}", varIntro, name)
}