January 07, 2021
I get this eror:


Example:

    alias a = compose!(x,y => x*y);

    writeln(a(2,5));

// Error: onlineapp.d(4): Error: undefined identifier x
January 07, 2021
My mistake:

alias a = compose!((x,y) => x*y);