RosettaCodeData/Task/Conditional-structures/Oz/conditional-structures-2.oz

4 lines
48 B
Plaintext

fun {Max X Y}
if X > Y then X else Y end
end