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