7 lines
103 B
Plaintext
Raw Normal View History

# -*- mode: snippet -*-
# name: for loop
# key: for
# --
for (int ${1:i} = 0; $1 < $2; $1++) {
$0
}