shithub: brokentoys

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