school/cs142/lab00/hello_world.cpp
2016-04-06 20:45:34 -07:00

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;
}