/* vi: set sw=4 ts=4: */
/*
 * hello.c - A hello world program.
 */

#include "toys.h"

void hello_main(void)
{
	printf("Hello world\n");
}