6 lines
85 B
Plaintext
6 lines
85 B
Plaintext
def main() {
|
|
var a<2,1> = [1, 2];
|
|
var b<2,1> = a;
|
|
var c<2,1> = b;
|
|
print(c);
|
|
} |