Scope modifiers: Difference between revisions

Content added Content deleted
m (omissions)
(Add Racket entry)
Line 804: Line 804:
}
}
with.impl(d, mean(b - a + also))</lang>
with.impl(d, mean(b - a + also))</lang>

=={{header|Racket}}==

Racket has no concept of scope modifiers. Depending on where an identifier is bound, it may be considered a top-level, module, or local binding. However, the binding is introduced with lexical scope in all cases. Bindings are introduced by syntactic forms such as <tt>lambda</tt>, <tt>let</tt>, or <tt>define</tt>.


=={{header|Tcl}}==
=={{header|Tcl}}==