diff options
author | Ori Bernstein <ori@eigenstate.org> | 2013-10-28 15:39:01 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2013-10-28 15:39:01 -0400 |
commit | 89e514d5355f9036a30c4a41cacc465e5999aa76 (patch) | |
tree | f6402fddce8bde453291627cdd4d8db2ad0fd59e /test/matchunion_sl.myr | |
parent | 682c4ce6114cb44e2ad95a75269585f6e1da8150 (diff) | |
download | mc-89e514d5355f9036a30c4a41cacc465e5999aa76.tar.gz |
Streamline syntax.
Move from:
match foo
bar:
action
;;
baz:
action
;;
To:
match foo
| bar:
action
| baz:
action
;;
Diffstat (limited to 'test/matchunion_sl.myr')
-rw-r--r-- | test/matchunion_sl.myr | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/test/matchunion_sl.myr b/test/matchunion_sl.myr index c1fbf83..54ba664 100644 --- a/test/matchunion_sl.myr +++ b/test/matchunion_sl.myr @@ -12,18 +12,9 @@ const main = { v = `Str "foo" match v - /* - `Int 127: - -> 42 - ;; - */ - `Str s: - std.put("%s\n", s) - ;; - /* - `Nil: - ;; - */ + | `Int 127: -> 42 + | `Str s: std.put("%s\n", s) + | `Nil: ;; -> 0 } |