11 lines
149 B
C++
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;
|
||
|
}
|