RosettaCodeData/Task/Case-sensitivity-of-identifiers/Lua/case-sensitivity-of-identifiers.lua
2023-07-01 13:44:08 -04:00

5 lines
121 B
Lua

dog = "Benjamin"
Dog = "Samba"
DOG = "Bernie"
print( "There are three dogs named "..dog..", "..Dog.." and "..DOG.."." )