Comment on Bell Labs 'Unix' Tape from 1974 Successfully Dumped to a Tarball

<- View Parent
xthexder@l.sw0.com ⁨15⁩ ⁨hours⁩ ago

Hello World in 1974: echo.c

main(argc, argv)
int argc;
char *argv[];
{
	int i;

	argc--;
	for(i=1; i<=argc; i++)
		printf("%s%c", argv[i], i==argc? '\n': ' ');
}

source
Sort:hotnewtop