From 72d653e1e0cffe2e48bd7a393acf08c96d6db50a Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Wed, 12 Aug 2015 11:51:04 -0600 Subject: Inidiat commit of working files --- bundle/Vundle.vim/test/files/test.erl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 bundle/Vundle.vim/test/files/test.erl (limited to 'bundle/Vundle.vim/test/files') diff --git a/bundle/Vundle.vim/test/files/test.erl b/bundle/Vundle.vim/test/files/test.erl new file mode 100644 index 0000000..1672953 --- /dev/null +++ b/bundle/Vundle.vim/test/files/test.erl @@ -0,0 +1,20 @@ +-module(mmc_logmon_sup). +-behaviour(supervisor). +-export([init/1]). + +init(_) -> + {ok, { + {one_for_one, 5, 1}, + [ + {listener, + {aaa, start_link, []}, + permanent, 100, worker, + [aaa] + }, + {server, + {bbb, start_link, []}, + permanent, 100, worker, + [bbb] + } + ] + }}. -- cgit v1.2.3