# -*- mode: snippet -*-
# name: if and else
# key: ife
# expand-env: ((yas-indent-line 'fixed))
# group : control structure
# --
_if ${1:cond}
_then
	$2
_else
	$0
_endif