school/cs142/lab00/hello_world.cpp

11 lines
149 B
C++

#include <iostream>
using namespace std;
int main() {
cout << "Hello, world! My name is Derek McQuay."<< endl;
cin.get();
return 0;
}