shithub: scc

ref: 4f2c1d31306ca66b75de52c0c424a61d56566e91
dir: /tests/0006-whilestmt.c/

View raw version

int
main()
{
	int x;

	x = 50;
	while (x)
		x = x - 1;
	return x;
}