Skip to content

Commit 40131ab

Browse files
committed
Added first program Hello world
0 parents  commit 40131ab

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

hello_world.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# include <iostream>
2+
using namespace std;
3+
4+
int main(){
5+
// code goes here
6+
cout<<"Hello world!"<<endl;
7+
retuen 0;
8+
}

0 commit comments

Comments
 (0)