Skip to content

Instantly share code, notes, and snippets.

@Steph-crown
Created October 9, 2020 07:15
Embed
What would you like to do?
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