This commit is contained in:
2025-11-26 17:57:22 +01:00
parent d88c7d0cbb
commit 2681a2fd1a
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -332,6 +332,11 @@ snippet main
return 0;
}
snippet range
for ( int i = 0; i < ${1:count}; i++ ) {
$0
}
snippet fori
for ( ${1:size_t} ${2:i} = ${3:0}; ${2:i} < ${4:count}; ${2:i}++ ) {
$0