0 votes
in GoLang by
How to write multiple strings in Go programming?

1 Answer

0 votes
by

To write multiple strings in Go, you should use a raw string literal, where the string is delimited by back quotes.

For example:

'line  1  

line  2  

line  3 '  

...