view sources/toys/hello.c @ 1376:a6d18adf198d

Added tag 1.0.2 for changeset a9685aea2a2c
author Rob Landley <rob@landley.net>
date Tue, 14 Jun 2011 20:48:07 -0500
parents 8fb80545fe84
children
line wrap: on
line source

#include <stdio.h>

int main(int argc, char *argv[])
{
  printf("Hello world!\n");
  return 0;
}