RosettaCodeData/Task/Conditional-structures/Nemerle/conditional-structures-2.nemerle

7 lines
110 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
match(x)
{
|1 => "x is one"
|x when (x < 5) => "x is less than five"
|_ => "x is at least five"
}