shithub: battleship

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