Skip to content

Instantly share code, notes, and snippets.

@cosmic-cortex
Last active May 6, 2020 06:06
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 cosmic-cortex/d90ec0c713eeb9acbce554971dcbb7cb to your computer and use it in GitHub Desktop.
Save cosmic-cortex/d90ec0c713eeb9acbce554971dcbb7cb to your computer and use it in GitHub Desktop.
employees = {make_employee(0, "Michael Scott", "Regional Manager", 100000),
make_employee(1, "Dwight K. Schrute", "Assistant to the Regional Manager", 65000),
make_employee(2, "Pamela Beesly", "Receptionist", 40000),
make_employee(3, "James Halpert", "Sales", 55000),
make_employee(4, "Stanley Hudson", "Sales", 55000)}
tasks = {make_task(0, 0, False),
make_task(1, 0, False),
make_task(2, 1, True),
make_task(3, 1, True),
make_task(4, 1, True),
make_task(5, 2, True),
make_task(6, 3, False),
make_task(7, 3, False),
make_task(8, 3, True),
make_task(9, 3, False)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment