Created
October 9, 2020 07:15
-
-
Save steph-crown/1d61858602c8c6a1b1d400291b890975 to your computer and use it in GitHub Desktop.
Prints out all the letters in my name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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