package main
import "fmt"
func main() {
// String with double quotes
str := "This is a string with \"double-quoted substring1\", and \"double-quoted substring2\" inside.";
fmt.Println(str)
}
/*
run:
This is a string with "double-quoted substring1", and "double-quoted substring2" inside.
*/