5 lines
108 B
Plaintext
5 lines
108 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: Ternary Operator
|
|
# key: tern
|
|
# --
|
|
${1:condition} ?? ${2:true} !! ${3:false}; |