|
topics >
| |||||||||||
aliasing Topic: binding of names to objects Topic: flag computer Topic: macros Topic: named constants and expressions Topic: parameter passing by name Topic: pointers to data Topic: replacement as defining a variable Topic: Goldstine and von Neumann consistency proof |
SummaryVariables can be names bound to values or to other variables. If an object is renamed then all references to the object become references to the new name. For instance an object named 'i' can be renamed 'i+1'. Then if 'j' had been bound to 'i', 'j' would be bound to 'i+1' after the renaming. Such indirection results in unusually behaviors. (cbb 5/80)
|