summaryrefslogtreecommitdiff
path: root/erlang/match.erl
blob: 016cbbc2d598bad214eaf530b043d54ac9060e0e (plain) (blame)
1
2
3
4
5
-module(match).
-export([match/1]).

match(success) -> io:fwrite("success~n");
match({error, Message}) -> io:fwrite("error: ~s~n", [Message]).