Jump to content

Case-sensitivity of identifiers: Difference between revisions

Added EasyLang implementation
(Add Ecstasy example)
(Added EasyLang implementation)
Line 409:
{{out}}
<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}}==
<syntaxhighlight lang="scheme">
175

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.