Result Size: 625 x 571
x
 
#include <iostream>
using namespace std;
void myFunction() {
  cout << "I just got executed!\n";
}
int main() {
  myFunction();
  myFunction();
  myFunction();
  return 0;
}
I just got executed!
I just got executed!
I just got executed!