Skip to content

Commit 41d91b0

Browse files
committed
add helloworld
1 parent ffa3797 commit 41d91b0

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
all:
2+
g++ helloworld.cpp -o helloworld

helloworld.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <iostream>
2+
3+
using namespace std;
4+
int main(int argc, char** argv)
5+
{
6+
cout<<"Hello World!";
7+
return 0;
8+
}

0 commit comments

Comments
 (0)