What is the difference between single quotes and double quotes in Julia?
Unlike Python, for strings, it doesn't allow single quotes:
> s = 'abc'
syntax: invalid character literal
> s = "abc"
> print(s)
abc
But when trying to single quote a double quote, it's allowed:
> s = '"'
> print(s)
"
What is the single quote use for in Julia? Is there documentation like Python's PEP to explain for reason why single quotes are not used?