Case-sensitivity of identifiers: Difference between revisions

Content added Content deleted
(Added Crystal implementation)
(Add Quackery)
Line 1,189: Line 1,189:
The three dogs are named Benjamin , Samba , and Bernie
The three dogs are named Benjamin , Samba , and Bernie
>>> </lang>
>>> </lang>

=={{header|Quackery}}==
<lang quackery>[ $ 'Benjamin' ] is dog ( --> $ )

[ $ 'Samba' ] is Dog ( --> $ )

[ $ 'Bernie' ] is DOG ( --> $ )

say 'There are three dogs named '
dog echo$ say ', '
Dog echo$ say ', and '
DOG echo$ say '.' cr</lang>
{{out}}
<pre>
There are three dogs named Benjamin, Samba, and Bernie.
</pre>


=={{header|R}}==
=={{header|R}}==