Skip to content

Instantly share code, notes, and snippets.

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