Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to write multi-line strings in program with Go

2 Answers

0 votes
package main
 
import "fmt"
 
func main() {
   	multiLine := `Go is a statically typed, compiled programming language designed at Google 
by Robert Griesemer, Rob Pike, and Ken Thompson. Go is syntactically similar to C, 
but with memory safety, garbage collection, structural typing, and CSP-style concurrency.`

    fmt.Println(multiLine)
}

  
  
/*
run:
  
Go is a statically typed, compiled programming language designed at Google 
by Robert Griesemer, Rob Pike, and Ken Thompson. Go is syntactically similar to C, 
but with memory safety, garbage collection, structural typing, and CSP-style concurrency.

*/

 



answered Aug 9, 2020 by avibootz
0 votes
package main
 
import "fmt"
 
func main() {
  	multiLine := "Line1 \n" +
                 "Line2 \n" +
                 "Line3 \n" +
                 "Line4"

    fmt.Println(multiLine)
}

  
  
/*
run:
  
Line1 
Line2 
Line3 
Line4

*/

 



answered Aug 9, 2020 by avibootz

Related questions

1 answer 101 views
2 answers 115 views
1 answer 181 views
1 answer 73 views
73 views asked May 19, 2025 by avibootz
1 answer 177 views
...