fork(1) download
  1. #include <string>
  2. #include <vector>
  3.  
  4. using namespace std;
  5.  
  6. struct Word_Entry
  7. {
  8. string ord;
  9. unsigned cnt;
  10. };
  11.  
  12. //typedef vector<Word_Entry> Word_List; <-This is what it used to look like
  13. using Word_List = vector<Word_Entry>;
  14.  
  15.  
  16. int main()
  17. {
  18. }
  19.  
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty