fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Zahl
  5. {
  6. int operator *() const { return 1; }
  7. friend bool operator>(const Zahl& links, const Zahl& rechts) { return *links > *rechts; }
  8. };
  9.  
  10. int main() {
  11. return 0;
  12. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
Standard output is empty