Case-sensitivity of identifiers: Difference between revisions

Content deleted Content added
Drkameleon (talk | contribs)
Undo revision 324477 by Drkameleon (talk)
Drkameleon (talk | contribs)
added Arturo
Line 139: Line 139:
'The three dogs are named ',DOG,', ',Dog,', and ',dog
'The three dogs are named ',DOG,', ',Dog,', and ',dog
The three dogs are named Benjamin, Samba, and Bernie</lang>
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}}==
=={{header|AutoHotkey}}==