5 lines
104 B
Text
5 lines
104 B
Text
def main() -> bool {
|
|
(field[2], bool) mut v = ([1, 2], true);
|
|
v.0 = [42, 43];
|
|
return v.1;
|
|
}
|