fork(4) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. std::string text = R"(part 1\
  6. part 2\
  7. part 3\
  8. part 4)";
  9. std::cout << text;
  10. return 0;
  11. }
Success #stdin #stdout 0s 3472KB
stdin
Standard input is empty
stdout
part 1\
                      part 2\
                      part 3\
                      part 4