match.txt 182 B

12345678
  1. match foo
  2. | true => "it's true"
  3. | "bar" => "it's bar"
  4. | let x: I32 if x > 3 => "it's greater than 3"
  5. | let x: I32 => "it's less than or equal to 3"
  6. else
  7. "I don't know what it is"
  8. end