In [1]:
# strings are defined with double quotes
# like variables, strings can contain any unicode character
s1 = "The quick brown fox jumps over the lazy dog α,β,γ"
println(s1)
The quick brown fox jumps over the lazy dog α,β,γ
In [2]:
2/3 + 5/6
Out[2]:
0.6666666666666666
In [ ]: