Created with <3 with dartpad.dev.
Created
July 21, 2022 11:45
-
-
Save faizan1947/f34b226855e58459665b62c9c2de91e2 to your computer and use it in GitHub Desktop.
ternary
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
int age = 123; | |
bool canBuySharab = age>21? true: false; | |
print(canBuySharab); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment