Guest User

Untitled

a guest
Jan 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #!/usr/bin/env escript
  2.  
  3. main([]) ->
  4. compile:file(misultin_proxy),
  5. code:add_pathz("../ebin"),
  6. code:load_file(misultin_proxy),
  7. {ok, P} = misultin_proxy:start(9050),
  8. erlang:monitor(process, P),
  9. receive
  10. {'DOWN', _, process, P, _} -> ok
  11. end.
Add Comment
Please, Sign In to add comment