RosettaCodeData/Task/Boolean-values/Monte/boolean-values.monte

5 lines
106 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def example(input :boolean):
if input:
return "Input was true!"
return "Input was false."