1 2 3 4 5 6 7 8 9 10
-module(trycatch_2). -export([two/1]). two(Term) -> Res = trycatch_3:three(Term), foo(), Res. foo() -> ok.