Skip to content
This repository has been archived by the owner on Oct 29, 2019. It is now read-only.

add hello_world.cpp #129

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
add hello_world.cpp
willyferry committed Oct 24, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 52198e981b10c0f65ef69143e05748da6fff19f2
6 changes: 6 additions & 0 deletions hello_world.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include<iostream>
using namespace std;

int main(){
cout << "Hello World";
}