yasnippet-snippets/snippets/julia-mode/while

9 lines
129 B
Plaintext

# -*- mode: snippet -*-
# name: while ... ... end
# key: while
# contributor: hankail05
# --
while ${1:cond}
${2:body}
end
$0