Case-sensitivity of identifiers: Difference between revisions

Content added Content deleted
(Fixed grammatical errors and misspellings.)
(Added Frink)
Line 132: Line 132:
Output:
Output:
<pre> There is just one dog named Bernie</pre>
<pre> There is just one dog named Bernie</pre>

=={{header|Frink}}==
Frink is case-sensitive.
<lang frink>
dog = "Benjamin"
Dog = "Samba"
DOG = "Bernie"
println["There are three dogs named $dog, $Dog and $DOG"]
</lang>

=={{header|Go}}==
=={{header|Go}}==
Go is case sensitive. Further, visibility depends on case. See the Go entry under the [[Scope_modifiers#Go|Scope modifiers]] task.
Go is case sensitive. Further, visibility depends on case. See the Go entry under the [[Scope_modifiers#Go|Scope modifiers]] task.