On Friday, 28 June 2013 at 19:43:37 UTC, Simen Kjaeraas wrote:
> import std.stdio;
> import std.typecons : tuple;
>
> auto foo(int x, int y){
> writeln(x, y);
> return tuple(3, 4);
> }
>
> void main(){
> foo(foo(1,2).tupleof);
> }
Hi Simen,
Thanks for your help too, it worked!