5 lines
No EOL
69 B
Text
5 lines
No EOL
69 B
Text
def foo():
|
|
return 1, 2
|
|
def main():
|
|
a, b = foo()
|
|
return a + b |