5 lines
106 B
Text
5 lines
106 B
Text
|
|
def example(input :boolean):
|
||
|
|
if input:
|
||
|
|
return "Input was true!"
|
||
|
|
return "Input was false."
|