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

5 lines
106 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
def example(input :boolean):
if input:
return "Input was true!"
return "Input was false."