Paul Maddox wrote:
> Peter,
>
>    thanks, well MiniGW is installed, so I'll give that a go first..
> Not found a "hello world" example yet.
>   
Consoleapp with C would be:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
  /* Declare your variables here... */
  system("cls");
  /* Put your own code here... */
  printf("Hello world!\n");
  system("PAUSE");
  return 0;
}
/Micke