# -*- mode: snippet -*-
|
|
# name: Iterate over elements of iterable (for-in) loop
|
|
# key: iter
|
|
# --
|
|
for ($1 in $2) {
|
|
$0
|
|
}
|