www.pudn.com > interpreter.zip > example.x


printstr("**  This is a test  **\n\n");
x1 = 5;
x0 = 1;
while (0 < x1){
	x1 = x1 - 1;
	x0 = x0 * 2;
	x2 = 5 - x1;
	while (0 < x2 ){
		printstr("*");
		x2 = x2 - 1;
	}
	x2 = x1 + 2;
	while (0 < x2 ){
		printstr(" ");
		x2 = x2 - 1;
	}
    printvar(x0); printstr("\n");
}