% MATLAB uses SQL style strings. These are all valid.
a = 'hello'
b = 'hello''there'
c = 'hello'''
d = '''hello'''
e = ''
e = ''''
% It also allows the single quote to be appended to a variable name,
% this is not a string
z = Z' + a'
