Concept
- Current matching is equality/value based rather than a full destructuring pattern system.
Example
match status
case 200
say "ok"
case 404
say "not found"
else
say "other"SE supports concise value-based matching.
match status
case 200
say "ok"
case 404
say "not found"
else
say "other"