fork download
  1. M:\Development\x64\test>cat main.cpp && g++ -std=c++0x main.cpp -c && g++ main.o -o test.exe && test
  2. #include <iostream>
  3. #include <functional>
  4.  
  5. int main()
  6. {
  7. std::hash<float> bla;
  8. std::hash<double> blabla;
  9. std::cout << "Hello World!\n";
  10. }
  11. Hello World!
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty