fork download
  1. #include <string>
  2. #include <unordered_map>
  3. #include <cstdint>
  4.  
  5.  
  6. int main() {
  7.  
  8.  
  9. std::unordered_map<std::string, std::string> mymap;
  10. mymap["woof"] = "doop";
  11.  
  12. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty