Low-level language: example program (C++)

To print

Hello, world.

on the screen, we need in C++ the following program

#include <iostream.h>

void main()
{
  cout << "Hello, world." << endl;
}