switch( ) 183 B

123456789101112
  1. # This was cloned from a TextMate bundle for yasnippet.
  2. #name : switch( )
  3. #key : switch
  4. # --
  5. switch (${1:variable}) {
  6. case '${2:value}':
  7. $0
  8. break;
  9. default:
  10. }