Files
dotfiles/.emacs.d/snippets/elixir-mode/hcall
2017-12-21 17:29:29 +01:00

9 lines
135 B
Plaintext

# -*- mode: snippet -*-
# name: hcall
# key: hcall
# --
def handle_call($1, _from, state) do
reply = $0
{:reply, reply, state}
end