11 lines
156 B
C++
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
|
|
*/ |