xxxxxxxxxx
import std;
void metacall(T...)(string name, T args)
{
// Here the real implentation of library
writeln("Called function ", name, " with args ", args);
}
void main()
{
// Current example
metacall!(int,int)("hello", 1, 2);
// Syntax sugar
alias hello = partial!(metacall!(int,int), "hello");
hello(3,4);
}