11 lines
144 B
Text
11 lines
144 B
Text
def foo(field[2] a) -> bool {
|
|
return true;
|
|
}
|
|
|
|
def foo(field[1] a) -> bool {
|
|
return true;
|
|
}
|
|
|
|
def main() -> bool {
|
|
return foo([1]);
|
|
}
|