Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created October 2, 2019 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/b4479b0cba4ab0a1438e557ecd097554 to your computer and use it in GitHub Desktop.
Save MarcinusX/b4479b0cba4ab0a1438e557ecd097554 to your computer and use it in GitHub Desktop.
for (int i = 0; i < 10; i++) {
if (i % 2 == 0) {
print('Flutter jest...');
} else {
print('...bardzo prosty');
}
}
// Lub w ten sposób:
for (String obj in myList) {
print(obj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment