unix-conf/.emacs.d/elpa/yasnippet-20160131.948/snippets/cc-mode/for_n

9 lines
148 B
Plaintext
Raw Normal View History

2016-02-18 13:53:30 +00:00
# -*- mode: snippet -*-
# contributor: York Zhao
# name: for_n
# key: forn
# --
for (${1:auto} ${2:i} = ${3:0}; $2 < ${4:MAXIMUM}; ++$2) {
$0
}