shithub: brokentoys

ref: 77d016decc6c4f92e4c32ff5777a57fc1d7a7e1f
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);
}