Skip to content

Instantly share code, notes, and snippets.

@sinasamavati
Last active August 29, 2015 14:01
Show Gist options
  • Save sinasamavati/687f0e8e4d696efd1b13 to your computer and use it in GitHub Desktop.
Save sinasamavati/687f0e8e4d696efd1b13 to your computer and use it in GitHub Desktop.
%% nested try...catch
-module(ex).
-export([one/0]).
one() ->
try two() of
ok -> ok
catch _:_ -> ok
end.
two() ->
try three() of
ok -> ok
catch _:_ -> ok
end.
three() -> ko.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment