Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
141 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: loop(...) -> receive _ -> loop(...) end.
  3. # --
  4. ${1:loop}($2) ->
  5. receive
  6. ${3:_} ->
  7. $1($2)
  8. end.
  9. $0