dotar/vim/snippets/java/for.snippet
2011-11-17 16:00:49 -06:00

4 lines
53 B
Plaintext
Executable File

for(${1:int i=0}; ${2:condition}; ${3:i++}){
${4}
}