// utils.go
package text
import (
"fmt"
)
func Var(name string) string {
return fmt.Sprintf("%c{%s}", defaultVarIntro, name)
}