#include <iostream> // Anything in the main function will get executed even without calling it. int main(){ // The function cout in the STD or Standard Library will print out stuff to the console. std::cout <<"Hello world."; }