adding cs142 code
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
CPPFLAGS=-Wall -g -std=c++0x
|
||||
|
||||
all: hello_world
|
||||
|
||||
clean:
|
||||
rm -rv hello_world
|
||||
@@ -0,0 +1,10 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
|
||||
cout << "Hello, world! My name is Derek McQuay."<< endl;
|
||||
cin.get();
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user