#include #include using namespace std; int print(int number) { cout << "The number is " << number << endl; return 0; } string print(string phrase) { cout << "The string is " << phrase << endl; return "done"; } int main() { cout << "Hello World" << endl; string phrase = "Digilent is awesome!"; int variable = 1234; print(phrase); print(variable); return 0; }