Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 294 Bytes

exercise.md

File metadata and controls

13 lines (9 loc) · 294 Bytes

Maps 101

Objectives

  1. Create an empty map of string keys and string values called "profile".
  2. Add the following data to the map
    1. First Name (provided string)
    2. Last Name (provided as string)
    3. Age (provided as int)

Solution

Click here to view the solution