Created
January 8, 2021 03:30
-
-
Save numoonchld/32160fbf3c2a4ce3f7c6bae302bbd1c4 to your computer and use it in GitHub Desktop.
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
// Define main function | |
void main() { | |
// 05. MAPS ============================ | |
print('\n05. MAPS: \n------------------------------'); | |
// Maps are like Python Dictionaries | |
Map student = { | |
'name': 'Naruto', | |
'age': 21, | |
}; | |
print(student); | |
print(student['name']); | |
print(student['age']); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment