Jump to content

Case-sensitivity of identifiers: Difference between revisions

(Euphoria version)
Line 18:
printf( 1, "The three dogs are named %s, %s and %s\n", {dog, Dog, DOG} )
</lang>
=={{header|J}}==
 
<lang j> NB. These variables are all different
dog=: 'Benjamin'
Dog=: 'Samba'
DOG=: 'Bernie'
'The three dogs are named ',dog,', ',Dog,', and ',DOG
The three dogs are named Benjamin, Samba, and Bernie </lang>
 
=={{header|Perl}}==
 
892

edits

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