# -*- mode: snippet -*-
|
|
# name: for ... in ...; ... end
|
|
# group : control structure
|
|
# --
|
|
for ${1:element} in ${2:collection}
|
|
$0
|
|
end
|