Skip to content
Snippets Groups Projects
Commit 46780eb2 authored by deuce's avatar deuce
Browse files

Use format() to create strings of spaces instead of a loop.

parent 6678398d
No related branches found
No related tags found
No related merge requests found
......@@ -2,10 +2,7 @@
function ClearLine(row,toColumn)
{
console.gotoxy(1,row);
for(col=0;col<toColumn;col++)
{
console.putmsg(" ");
}
console.putmsg(format("%*s", toColumn-1, ""));
}
function ClearArea(fromRow,fromColumn,qty)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment