fork download
  1.  
  2. #include <iostream>
  3.  
  4. void print_mice() {
  5. std::cout << "Three blind mice\n";
  6. }
  7.  
  8. void print_run() {
  9. std::cout << "See how they run\n";
  10. }
  11.  
  12. int main() {
  13. print_mice();
  14. print_mice();
  15. print_run();
  16. print_run();
  17. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
Three blind mice
Three blind mice
See how they run
See how they run