1map<string, int>::iterator it;
2
3for (it = symbolTable.begin(); it != symbolTable.end(); it++)
4{
5 std::cout << it->first // string (key)
6 << ':'
7 << it->second // string's value
8 << std::endl;
9}
10