Created with <3 with dartpad.dev.
Created
January 11, 2023 12:44
-
-
Save ohdowon064/a3937200751bacd139cae9a681090a5a to your computer and use it in GitHub Desktop.
periwinkle-neutron-3372
This file contains hidden or 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() { | |
| var oldFriends = ['kim', 'park']; | |
| var newFriends = [ | |
| 'choi', | |
| 'han', | |
| 'oh', | |
| for(var friend in oldFriends) "♥ $friend" | |
| ]; | |
| print(newFriends); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment