xxxxxxxxxx
import std.stdio;
struct Results {
int a, b;
int[] aa, ab;
}
Results func1() {
return Results(1, 2, [0, 1, 2, 3], [10, 11, 12]);
void main()
{
writeln(func1);