>
|
t := proc() Digits := Digits + 4; end proc:
|
>
|
|
During the execution of "t", Digits is increased by 4, and automatically reset on exit from "t".
>
|
|
The following is an example of a user-defined environment variable.
>
|
p := proc() _Envy := bar end proc:
|
>
|
|
| (7) |
>
|
p := proc() _Envy := bar; anames(environment) end proc:
|
| (8) |