Skip to content

Instantly share code, notes, and snippets.

@steph-crown
Created October 8, 2020 23:07
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 steph-crown/0e2e2191a8269ad3a9565fc158a885b2 to your computer and use it in GitHub Desktop.
Save steph-crown/0e2e2191a8269ad3a9565fc158a885b2 to your computer and use it in GitHub Desktop.
Prints all.letters in.my name
void main() {
String name = 'Steph Crown';
for (var j in name) {
print(name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment