Skip to content

Instantly share code, notes, and snippets.

@steph-crown
Created October 9, 2020 07:42
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/307cc2a080f0cf58feced055963b22c7 to your computer and use it in GitHub Desktop.
Save steph-crown/307cc2a080f0cf58feced055963b22c7 to your computer and use it in GitHub Desktop.
Uses while loop to print all letters in my name
void main(){
String name = 'Steph Crown';
int counter = 0;
while (counter < name.length) {
print(name[counter]);
++counter;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment