Bell 32V development
[unix-history] / usr / src / cmd / yes.c
main(argc, argv)
char **argv;
{
for (;;)
printf("%s\n", argc>1? argv[1]: "y");
}