Created
May 28, 2022 10:16
-
-
Save AbdullohBahromjonov/f540ac007d01a560ec7728da367a1ba5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const myAge = 15; | |
const isTeenager = (13 >= 19); | |
const maryAge = 30; | |
const bothTeenagers = (myAge == isTeenager) && (maryAge == isTeenager); | |
const reader = 'Abdulloh'; | |
const ray = 'Ray Wenderlich'; | |
const rayIsReader = (ray == reader); | |
void main() { | |
print(bothTeenagers); | |
print(rayIsReader); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment