fork(7) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. if( 5u > -1 )
  6. {
  7. cout << "true";
  8. }
  9. else
  10. {
  11. cout << "42";
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
42