Skip to content

Instantly share code, notes, and snippets.

@recluze
Created June 28, 2018 16:08
Show Gist options
  • Save recluze/a6b57ba705395fb6e9a42a2d2fc62782 to your computer and use it in GitHub Desktop.
Save recluze/a6b57ba705395fb6e9a42a2d2fc62782 to your computer and use it in GitHub Desktop.
Dart Tes
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