4 lines
69 B
Text
4 lines
69 B
Text
def main(field[2][2] a) -> field[2][2] {
|
|
a[1][1] = 42;
|
|
return a;
|
|
}
|