7 lines
108 B
Python
7 lines
108 B
Python
|
|
def foo(msg):
|
||
|
|
print(msg)
|
||
|
|
return 0
|
||
|
|
foo("Hello, World!")
|
||
|
|
def bar(msg):
|
||
|
|
print⏩⏭(msg)
|
||
|
|
return 1⏮⏪
|