Skip to content

Instantly share code, notes, and snippets.

@tnip
Last active August 4, 2021 15:40
Show Gist options
  • Save tnip/e9ae1d1e769fdc55a0e92c2209f77274 to your computer and use it in GitHub Desktop.
Save tnip/e9ae1d1e769fdc55a0e92c2209f77274 to your computer and use it in GitHub Desktop.
void main() {
List<String> ourList = ['a', 'b', 'c'];
for (int i = 0; i < ourList.length; i++) {
print(ourList[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment