(a,b,c) syntax

2012-07-11 Thread Andrea Fontana
Why this code print five ? writeln((One, 10, Five)); What does ( ... , ... , ...) means?

Re: (a,b,c) syntax

2012-07-11 Thread Timon Gehr
On 07/11/2012 02:44 PM, Andrea Fontana wrote: Why this code print five ? writeln((One, 10, Five)); What does ( ... , ... , ...) means? , is the comma operator inherited from C. a,b means: execute a first, then b, and the result is b.