Files
UoL/CM2005 Object Oriented Programming/Topic 1/1.1.5/main.cpp
2021-04-12 18:30:10 -05:00

11 lines
156 B
C++

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