shithub: mc

Download patch

ref: 89e514d5355f9036a30c4a41cacc465e5999aa76
parent: 682c4ce6114cb44e2ad95a75269585f6e1da8150
author: Ori Bernstein <ori@eigenstate.org>
date: Mon Oct 28 11:39:01 EDT 2013

Streamline syntax.

    Move from:

        match foo
        bar:
            action
            ;;
        baz:
            action
            ;;

    To:

        match foo
        | bar:
            action
        | baz:
            action
        ;;