1. Py 2.5h Update
- Posted by "Cuny, David at DSS" <David.Cuny at DSS.CA.GOV> Nov 06, 2000
- 556 views
Yet another update of Py, at: http://www.lanset.com/dcuny/py.htm
The latest feature is the oft-requested pass by reference. You can now
write:
def swap( *a, *b )
tmp = a
a = b
b = tmp
end def
Referenced parameters must be variables (indexed or plain).
As usual, bug reports are appreciated.
Thanks!
-- David Cuny

