Skip to content

Commit 7bc93aa

Browse files
authored
Create Say "Hello, World!" With C++.cpp
1 parent c28fbe5 commit 7bc93aa

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <iostream>
2+
#include <cstdio>
3+
using namespace std;
4+
5+
int main() {
6+
printf("Hello, World!");
7+
return 0;
8+
}

0 commit comments

Comments
 (0)