view sources/toys/hello.c @ 1452:707beb993e13 1.1.0

Trivial cleanup.
author Rob Landley <rob@landley.net>
date Thu, 29 Sep 2011 19:27:00 -0500
parents 8fb80545fe84
children
line wrap: on
line source

#include <stdio.h>

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