<div dir="ltr"><div class="gmail_quote"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div></div><div>I don't know if we have a problem with introducing 'else' as a keyword. Will that potentially break old existing code?</div></div></blockquote><div><br></div><div>If a new keyword is a contention point, "catch" can be one option:</div><div><br></div><div style="margin-left:40px"><span style="font-family:monospace">change_and_backup(File) -><br>  begin<br>    {ok, Value} <~ file:read_file(File),<br>    NewValue = do_something_with_value(Value),<br>    ok <~ file:write_file(File ++ ".backup", Value),<br>    ok <~ file:write_file(File, NewValue),<br>    NewValue<br>  catch<br>    {error, Reason} -> erlang:error({backup_error, Reason}, [File])<br>  end.</span></div><div><br></div><div> Use begin/catch for local/functional returns and try/catch for non-local/imperative returns.  It may even make it clearer they are two approaches for tackling the same problem.<br></div><br></div></div>