yasnippet-snippets/snippets/clojure-mode/try

8 lines
96 B
Plaintext
Raw Normal View History

2019-03-09 19:35:58 +01:00
# -*- mode: snippet -*-
# name: try
# key: try
# --
(try
$1$>
(catch ${2:Exception} e$>
$3$>))$>