Last active
September 6, 2022 03:02
-
-
Save ordem-yoo/8ba912f1bec24dbacce84c872bce150d to your computer and use it in GitHub Desktop.
for statement pie maker
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
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