// lab 10 warm-up // write a hello world program using a function // named printHello to print out "Hello world!" #include using namespace std; // add printHello prototype here int main() { // add printHello function call here return 0; } // add printHello function definition here