11 lines
124 B
Go
11 lines
124 B
Go
|
// utils.go
|
||
|
package text
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func Var(name string) string {
|
||
|
return fmt.Sprintf("%c{%s}", varIntro, name)
|
||
|
}
|