Add Initial commit

This commit is contained in:
Lev
2021-04-12 18:30:10 -05:00
parent f841f2da98
commit 2c82de28f5
2 changed files with 128 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <iostream>
int main()
{
std::cout << "Hello BSc CS" << std::endl;
return 0;
}
/*
We use the command "g++ main.cpp" to build the executable
*/