Programming question: are escape sequences/characters always from an inner to an outer context? (eg code to data, ide to shell...)
Conversation
Replying to
In Ruby, you can interpolate like this: "some text #{variable} and more text" and whatever is between the braces is standard Ruby code.
1
1
But many escape characters are to insert things that are legal in the inner context, but illegal given the combined inner/outer context.
1
1

