Files
emacs/lisp/yasnippet-snippets/snippets/cc-mode/ternary
2020-12-05 21:29:49 +01:00

5 lines
90 B
Plaintext

# -*- mode: snippet -*-
# name: ternary
# key: ?
# --
(${1:cond}) ? ${2:then} : ${3:else};