ABC C++ Error
ColeyG opened this issue · 1 comments
ColeyG commented
Hey folks!
I was using Rosetta Git to learn some C++ stuff and I found the following in the ABC C++ example:
#include <iostream
#include <vector>
#include <string>
#include <set>
#include <cctype>
typedef std::pair<char,char> item_t;
typedef std::vector<item_t> list_t;
The iostream include should be closed and there shouldn't be an empty line.