In the editor, you'll see a template code. Replace it with the following:
#include <iostream>
using namespace std;
int main() {
cout << "Hello, World!" << endl;
return 0;
}
Save the file (Ctrl + S) and click on the build button (green hammer icon) to compile and run the program.
You should see "Hello, World!" printed in the console.