Exercise on Graphs (Work in teams)

1\. Create a data structure that can represent a graph
   -- The graph nodes should each contain an identifier and some string content
   -- The string content could, for example, be city and state names with airline routes as links
2\. Create a set of functions that can add an node to the graph
3\. Create a function that can print out a single node and its links
```