String Values

Strings can use either " or ' as a delimiter.

let s1 = 'abc'
let s2 = "John O'Reilly"

The escape rules are the same as Java.

   let s1 = 'line one\nline 2\n'

Unicode characters are allowed.

let s = '© Xyz Corp.'