// }
//}
</pre>
*currently using the older version of the screen frame until the problem is resolved
<pre>
for(int k=0;k< console.getRows();k+=2){
for(int m=0;m<console.getCols()-10;m+=10){
console.setPos(k, m);
i=!i;
console<<(i?"Hello":"Hi");
}
}
</pre>