RosettaCodeData/Task/Case-sensitivity-of-identifiers/Elixir/case-sensitivity-of-identifiers.elixir
2015-02-20 00:35:01 -05:00

4 lines
108 B
Text

dog = "Benjamin"
doG = "Samba"
dOG = "Bernie"
IO.puts "The three dogs are named #{dog}, #{doG} and #{dOG}."