Case-sensitivity of identifiers: Difference between revisions

added Arturo
(Undo revision 324477 by Drkameleon (talk))
(added Arturo)
Line 139:
'The three dogs are named ',DOG,', ',Dog,', and ',dog
The three dogs are named Benjamin, Samba, and Bernie</lang>
 
=={{header|Arturo}}==
 
<lang rebol>dog: "Benjamin"
Dog: "Samba"
DOG: "Bernie"
 
dogs: @[dog Dog DOG]
 
print ["The" size dogs "dog(s) are named" join.with:", " dogs]
</lang>
 
{{out}}
 
<pre>The 3 dog(s) are named Benjamin, Samba, Bernie</pre>
 
=={{header|AutoHotkey}}==
1,532

edits