fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. while (true) {
  6. break;
  7. std::cout << "Never gets here" << std::endl;
  8. }
  9. std::cout << "Jumps straight to here" << std::endl;
  10. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
Jumps straight to here