Switch Case
Coder

Coder @coder_d295cd12743e7d146c7

About: I want to learn flutter

Joined:
Dec 29, 2024

Switch Case

Publish Date: Dec 30 '24
0 0
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

Comments 0 total

    Add comment