Skip to content

Instantly share code, notes, and snippets.

@AbdullohBahromjonov
Created May 28, 2022 10:16
Show Gist options
  • Save AbdullohBahromjonov/f540ac007d01a560ec7728da367a1ba5 to your computer and use it in GitHub Desktop.
Save AbdullohBahromjonov/f540ac007d01a560ec7728da367a1ba5 to your computer and use it in GitHub Desktop.
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