View raw

1 # -*- mode: snippet -*- 2 # name: cond 3 # key: cond 4 # -- 5 (cond (${1:first-condition} ${2:first-return}) 6 (${3:second-condition} ${4:second-return}) 7 (t ${5:always-true-return})) 8 $0