main X
1: #include <ape.h> 2: main() 3: { 4: PMINT a,b; 5: int i; 6: 7: a = itom(2); 8: new(&b); 9: for (i=1; i < 11; ++i) { 10: square(a,b); 11: mout(a); putchar('\t'); mout(b); putchar('\n'); 12: move(b,a); xfree(b); 13: } 14: }