yasnippet/extras/imported/perl-mode/foreach.yasnippet
2009-08-29 17:59:02 +00:00

9 lines
161 B
Plaintext

# -*- mode: snippet -*-
# key: fore
# contributor: Translated from TextMate Snippet
# name: Loop
# --
foreach ${1:my \$${2:x}} (@${3:array}) {
${4:# body...}
}