| # -*- mode: snippet -*- | |
| # name: if ... else ... end | |
| # group : control structure | |
| # -- | |
| if ${1:condition} | |
|   $2 | |
| else | |
|   $3 | |
| end |