Skip to content

Instantly share code, notes, and snippets.

@geektutor
Created April 17, 2020 09:43
Show Gist options
  • Save geektutor/1067fb6d7ec3486d22449e440efecebf to your computer and use it in GitHub Desktop.
Save geektutor/1067fb6d7ec3486d22449e440efecebf to your computer and use it in GitHub Desktop.
import 'dart:math';
void main() {
loveCaculator();
}
void loveCalculator() {
int loveScore = Random().nextInt(100) + 1;
print(loveScore);
if (loveScore > 70){
print('You love each other');
}
else {
print('You like each other');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment