Skip to content

Instantly share code, notes, and snippets.

@karan-ta
Last active May 29, 2020 11:47
Show Gist options
  • Save karan-ta/780e75b1153ba6604cc0c80a7595a47c to your computer and use it in GitHub Desktop.
Save karan-ta/780e75b1153ba6604cc0c80a7595a47c to your computer and use it in GitHub Desktop.
Dart Hello World
void main (){
print("start - please guess number");
int secretNumber = 5;
int userNumber = 3;
if (userNumber < secretNumber)
print("my number is high");
if (userNumber > secretNumber)
print("my number is low");
if (userNumber == secretNumber) print("Yes you are right.");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment