2025-09-08 20:34:20 +03:00

7 lines
94 B
Plaintext

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