aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/edit_make.erl
blob: 20f6cc2fad0a313dcaa637871279d0251e2d1bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-module(edit_make).
-export([start/0]).

start() ->
    spawn(fun() -> doit() end).

doit() ->
    sleep(1),
    ig:gen(edit_ig),
    c:c(edit_ig),
    halt().

sleep(Sec) ->
    receive after Sec*1000 -> true end.