%% @doc ... -module(bloodbath_threading). -export([run_async/1]). -spec run_async(fun()) -> pid(). run_async(Fun) -> spawn(Fun).