// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com). // All rights reserved. // utils.go package text import ( "fmt" ) func Var(name string) string { return fmt.Sprintf("%c{%s}", defaultVarIntro, name) }