Case-sensitivity of identifiers: Difference between revisions

m
→‎{{header|Tcl}}: match output properly
(→‎Tcl: Added implementation)
m (→‎{{header|Tcl}}: match output properly)
Line 50:
set Dog "Samba"
set DOG "Bernie"
puts "The three dogs are named '$dog', '$Dog' and '$DOG'"</lang>
Which prints...
<pre>The three dogs are named 'Benjamin', 'Samba' and 'Bernie'</pre>
Anonymous user