8 lines
113 B
Text
8 lines
113 B
Text
struct Pair {
|
|
int x;
|
|
int y
|
|
}
|
|
|
|
int program(int argc, string[] argv) {
|
|
return (new Pair {y = 3; x = 4}).y;
|
|
}
|