The code you posted in your comment is incorrect for 2 reasons:
Firstly, your header file should be:
#include <iostream> // not std_lib_facilities.h
This header files is the standard header file included in all programs of c++. Its full name is input/output stream, and as the name suggests, it holds family of class templates and supporting functions in the C++ Standard Library that implement stream-based input/output capabilities (Obtained from: Input/output (C++))
Secondly, the line that produces output has an error: cout does not have std:: attached to it. The std:: tag tells the compiler that the function cout is a part of the namespace std. To fix this you can either add std:: before cout, or you can include the line:
using namespace std;
just in between the include statement and the int main() line.
In the case that this does not fix the issue, then there could be something wrong in the way you have installed eclipse or the gcc compiler. In that case, I would recommend you to watch this video on YouTube: Eclipse IDE for C/C++ Developers - Download, Install, and Run | eitlearning.com. Note that this video is for a Windows Operating System.
This video takes you over the entire process of installing eclipse and its requisites. You can compare your installation process to the way the user in the video has done it to see if you missed a step or if you did something wrong.
Good luck!