0 votes
in GoLang by
How can you format a string without printing?

1 Answer

0 votes
by

You should the following command to format a string without printing:

return fmt.Sprintf ("at %v, %s" , e.When , e.What )

...