Created
June 28, 2018 16:08
-
-
Save recluze/a6b57ba705395fb6e9a42a2d2fc62782 to your computer and use it in GitHub Desktop.
Dart Tes
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
printNumber(int num) { | |
print("The number is: ${num}!!"); | |
} | |
void main() { | |
for (int i = 0; i < 5; i++) { | |
print('hello ${i + 1}'); | |
} | |
printNumber(59); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment