10 lines
159 B
Plaintext
10 lines
159 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: Foreach loop
|
|
# key: foreach
|
|
# condition: t
|
|
# --
|
|
foreach (${1:var} ${2:i} in ${3:collection})
|
|
{
|
|
$0
|
|
}
|