On 26-Aug-11 10:20 AM, Timon Gehr wrote:
On 08/26/2011 12:19 AM, Timon Gehr wrote:On 08/25/2011 11:34 PM, bellinom wrote:whoops, this is better:auto arr=to!(int[])(split(strip!(readln())));
Or, auto arr2=to!(int[])( readln.strip.split );Got rid of the second ! too (does not work with it). I not sure about having no () for 3 of the functions though.
- Joel