mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
10 lines
98 B
Plaintext
10 lines
98 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: while
|
|
# key: while
|
|
# --
|
|
|
|
var i = $1.length;
|
|
|
|
while( i -- ){
|
|
$0
|
|
} |