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.'); } }
I understood
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.'); } }
I understood
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)