xxxxxxxxxx
import std.variant : Algebraic;
alias Alg = Algebraic!(int, string);
void main()
{
int n = 2;
Alg value;
value = n == 2 ? 2 : "string";
}