Evgeny M.

Results 23 comments of Evgeny M.

`r3:do` returns only after the project is recompiled, tested it with `r3:do(compile), mymodule:run().` after changing the `run` function. `rebar_agent:do(compile)` same, it locks the console prompt until everything is compiled.

looks like something like this does the job ```erlang Me = self(), F = fun() -> erlang:display(start), Pid = shell:whereis(), erlang:suspend_process(Pid), try rebar_agent:do(compile) after erlang:resume_process(Pid) end, erlang:display('end'), Me ! done...

> Hi! > > Am I right that you're trying to do the following As [kvakvs](https://github.com/kvakvs) said above funs are usually used in assignments, as parameters of function calls and...