confi-emacs-actual/snippets/java-mode/while

9 lines
156 B
Plaintext
Raw Normal View History

2022-03-30 01:21:13 +02:00
# -*- mode: snippet -*-
# name: while loop
# key: while
# uuid: while
# condition: (not (sp-point-in-string-or-comment))
# --
while (${1:true}) {
$0
}