unix-conf/.emacs.d/elpa/yasnippet-20160131.948/snippets/erlang-mode/loop

9 lines
118 B
Plaintext
Raw Normal View History

2016-02-18 13:53:30 +00:00
#name : loop(...) -> receive _ -> loop(...) end.
# --
${1:loop}($2) ->
receive
${3:_} ->
$1($2)
end.
$0