Computing (FOLDOC) dictionary
Jump to user comments
a variable V whose value is copied to a local variable L
inside the called function or procedure. If the procedure
modifies L, these changes will not affect V, which may also be
in scope inside the procedure, until the procedure returns
when the final value of L is copied to V. Under