I have a string like "The quick brown fox". Where I want to keep the quotes.
I have done this:
let theQuote = """I really like "The quick brown fox." quote."""" Run
let theQuote = """I really like "The quick brown fox." quote.""""
It...works. But I was wondering if there were other ways to do the same thing.