|
Home
>
3. concept
>
3.2 libraries and modules
>
3.2.5 scoping
>
3.2.5.2 How a coder prevent scoping clashes?
|
Previous
Next
|
|
|
|
|
|
Johan Ovlinger
|
I assume that there are scoping constructs so that two different method using the
same naming don't interfere with each other?
|
|
Scott McKay
|
Of course, this has all been done in Lisp (CLOS) and Dylan. Generic functions are
what you use to extend functionality, packages (or modules) are what you use to
prevent clashes. (*)
|
|
|
|
|
|