yasnippet-snippets/snippets/julia-mode/if

10 lines
121 B
Plaintext
Raw Normal View History

2019-09-30 04:12:33 +02:00
# -*- mode: snippet -*-
# name: if ... ... end
# key: if
2019-10-01 05:32:05 +02:00
# contributor: hankail05
2019-09-30 04:12:33 +02:00
# --
if ${1:cond}
2019-10-01 05:32:05 +02:00
${2:body}
2019-09-30 04:12:33 +02:00
end
2019-10-01 05:32:05 +02:00
$0