Syntax for match clauses
Link to this syntax in ion online manual:
Example:
match $string
case "this"
echo "do that"
case "that"
echo "else this"
case _
echo "not found"
end
Edited by Florian Naumann
Link to this syntax in ion online manual:
Example:
match $string
case "this"
echo "do that"
case "that"
echo "else this"
case _
echo "not found"
end