Skip to content

Instantly share code, notes, and snippets.

@ordem-yoo
Last active September 6, 2022 03:02
Show Gist options
  • Save ordem-yoo/8ba912f1bec24dbacce84c872bce150d to your computer and use it in GitHub Desktop.
Save ordem-yoo/8ba912f1bec24dbacce84c872bce150d to your computer and use it in GitHub Desktop.
for statement pie maker
List<String> fruits = [
'apple',
'pear',
'orange',
'grape',
'banana',
];
void main() {
pieMaker();
}
void pieMaker() {
// List에 있는 내용을 전부 출력할 수 있게 해주는 for문
for (String fruit in fruits) {
print(fruit + ' pie');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment