multiline_string.go (78B)
1 package multilinestring 2 3 func foo() string { 4 s := `foo 5 bar 6 baz` 7 8 return s 9 }