Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save numoonchld/32160fbf3c2a4ce3f7c6bae302bbd1c4 to your computer and use it in GitHub Desktop.
Save numoonchld/32160fbf3c2a4ce3f7c6bae302bbd1c4 to your computer and use it in GitHub Desktop.
// 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