ref: 5a0e28438fe4c0f8cc55430c388c2016cc185cbf dir: /prec.c/
#include <u.h> #include <libc.h> void main() { char s[] = ",."; char *p; p = s; while(*p++ == '.' || *p == '.') print("dot"); exits(0); }