On Fri, Jan 03, 2003 at 02:06:35AM +0100, Martin Baehr wrote:
lets get on with it: (gotta do something while i attempt to get the pike 7.4 debian packages to compile on woody)
ahh, all build dependancies donwported, now pikeitself actually builds!
more translations:
Exchanging Values Without Using Temporary Variables
[var1, var2] = ({ var2, var1 }); // gee, i love this example. // it didn't even occur to me before // :-) temp = a; a = b; b = temp;
a = "alpha"; b = "omega"; [a, b] = ({ b, a });
[alpha, beta, production] = "January March August"/" "; [alpha, beta, production] = ({ beta, production, alpha });
greetings, martin.