Case-sensitivity of identifiers: Difference between revisions

Content added Content deleted
(Add Ecstasy example)
(Added EasyLang implementation)
Line 409: Line 409:
{{out}}
{{out}}
<pre>There are three dogs named Benjamin, Samba and Bernie.</pre>
<pre>There are three dogs named Benjamin, Samba and Bernie.</pre>

=={{header|EasyLang}}==
EasyLang is case-sensitive.
<syntaxhighlight lang="easylang">dog$ = "Benjamin"
Dog$ = "Samba"
DOG$ = "Bernie"
#
print "The three dogs are named " & dog$ & ", " & Dog$ & ", and " & DOG$ & "."</syntaxhighlight>

=={{header|EchoLisp}}==
=={{header|EchoLisp}}==
<syntaxhighlight lang="scheme">
<syntaxhighlight lang="scheme">