Skip to content

Instantly share code, notes, and snippets.

@MbuguaCaleb
Created August 12, 2020 09:48
Show Gist options
  • Save MbuguaCaleb/3a65784c4b86887bce6b880c3d6ff0c9 to your computer and use it in GitHub Desktop.
Save MbuguaCaleb/3a65784c4b86887bce6b880c3d6ff0c9 to your computer and use it in GitHub Desktop.
void main() {
/*Map is a set of key value pairs similar to
* object literals in javascript and dictionaries in
* python
*
*/
Map student ={
'name':"Mbugua Caleb","age":"24"
};
print(student['age']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment