DEV Community

Cover image for Switch Case
Coder
Coder

Posted on

Switch Case

void main() {
  print('Om Namah Shivay');
  //switch 
  int age = 16;
  switch (age) {
    case 15:
      print('age = 15');

      break;
    case 16:
      print('age = 16');
    default:
      print('That person neither born  nor die.');
  }
}

Enter fullscreen mode Exit fullscreen mode

I understood

Top comments (0)