7 lines
130 B
Plaintext
Executable File
7 lines
130 B
Plaintext
Executable File
# -*- mode: snippet -*-
|
|
# name: for (...; ...; ...) { ... }
|
|
# key: for
|
|
# --
|
|
for (${1:init}; ${2:condition}; ${3:increment}) {
|
|
$0
|
|
} |