#include #include #include "myFunctions.h" using namespace std; // the main function int main() { int num = 0; anotherFunction(); fun('w', 6); fun(1, 2); while (num < 3) { cout << "Enter a number: "; cin >> num; switch (num) { case 1: sum(); break; case 2: anotherFunction(); break; } if (num == 3) { cout << "Good bye!" << endl; } } cout << "I'm inside of main." << endl; return 0; }