shithub: brokentoys

ref: 76ada2d705f21dd5ed753fdafe00849afa7f6edd
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);
}