-
-
Save Modoo-Dev/e775fb806f220e606f3927dbbacd6c41 to your computer and use it in GitHub Desktop.
dartPractice-collection
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(List<String> arguments) { | |
Map<String, dynamic> country = { | |
'name': 'Indonesia', | |
'capital': 'Jakarta', | |
'population': 273523615, | |
}; | |
print('원본:$country'); | |
country['currency'] = 'IDR'; | |
print('currentcy 추가:$country'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment