void main() {
print('Om Namah Shivay');
//ternary
int age = 16;
print(age == 16 ? 'age = 16' : 'invalid');
}
I understood
void main() {
print('Om Namah Shivay');
//ternary
int age = 16;
print(age == 16 ? 'age = 16' : 'invalid');
}
I understood
For further actions, you may consider blocking this person and/or reporting abuse
Jonas Scholz -
Ben Halpern -
dev.to staff -
Eevis -
Top comments (0)