Last active
May 29, 2020 11:47
-
-
Save karanahuja-android/780e75b1153ba6604cc0c80a7595a47c to your computer and use it in GitHub Desktop.
Dart Hello World
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 (){ | |
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