14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // 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)
 | |
| }
 |