Slide 8
Slide 8 text
>> puts 'Single quotes look like \'this\'.'
Single quotes look like 'this'.
=> nil
>> puts %q{Curly brackets look like {this}.}
Curly brackets look like {this}.
=> nil
>> puts %q{An unbalanced curly bracket like this} is a problem.}
SyntaxError: syntax error, unexpected tIDENTIFIER, expecting end-of-input