RosettaCodeData/Task/Conditional-structures/Bori/conditional-structures.bori

7 lines
86 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if (i == 0)
return "zero";
elif (i % 2)
return "odd";
else
return "even";