Add description that strings can be lexicographically compared with comparison operators

This commit is contained in:
Pranit Bauva 2015-11-04 22:15:59 +05:30
parent 43b6288a46
commit 20f8f41ad5

View File

@ -102,6 +102,11 @@ false
# Printing is easy
println("I'm Julia. Nice to meet you!")
# String can be compared lexicographically compared
"good" > "bye" # => true
"good" == "good" # => true
"1 + 2 = 3" == "1 + 2 = $(1+2)" # => true
####################################################
## 2. Variables and Collections
####################################################