let string = this
match $string
    case "this"
        echo "do that"
    case "that"
        echo "else this"
    case _ 
        echo "not found"
end
