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.
*/