xxxxxxxxxx
import std;
struct Pair(T, U) {
T t;
U u;
}
alias PairIF = Pair!(int, float);
void main()
{
PairIF p = PairIF(4, 3.2);
writeln(p);