#!/usr/bin/ruby
#
## https://rosettacode.org/wiki/Literals/String
#
'single quotes with \'embedded quote\' and \\backslash';
‚unicode single quoted’;
%q(not interpolating with (nested) parentheses
and newline);
#!/usr/bin/ruby
#
## https://rosettacode.org/wiki/Literals/String
#
'single quotes with \'embedded quote\' and \\backslash';
‚unicode single quoted’;
%q(not interpolating with (nested) parentheses
and newline);