| # -*- mode: snippet -*- | |
| # name: ifnot (...) (...)  ... | |
| # key: ifnot | |
| # -- | |
| 
 | |
| (unless (${1:condition}) | |
|         (${2:then-do-this})) | |
| $0
 |