shithub: brokentoys

ref: a71ef347b03036c8e0a175f4084bc2440d0751e0
dir: /prec.c/

View raw version
#include <u.h>
#include <libc.h>

void
main()
{
	char s[] = ",.";
	char *p;

	p = s;
	while(*p++ == '.' || *p == '.')
		print("dot");
	exits(0);
}