Hi Everyone

The following behavior confuses me:

julia> print(["hello", "world"])
hello
world

julia> print(["\"hello\"", "world\""]) # <-- print triple quotes on hello but a 
single quote on world
"""hello"""
world"

Am I not using the escape command \" correctly? This came up for me when I 
needed to write a csv file with entries that had quotes. Writedlm kept writing 
triple quotes.

Thanks! Ethan

Reply via email to