Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion Aubree_Lytwyn.cpp

This file was deleted.

6 changes: 6 additions & 0 deletions hello.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
//Recitation 10 Practice git
#include<iostream.h>
int main(){
cout<<"\n Hello World!";
return 0;
}
6 changes: 6 additions & 0 deletions helloworld
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include<iostream>
using namespace std;
int main(){
cout<<"Hello World";
return 0;
}