Reply to thread

The code I need to fix is:

#test.lp

#!/usr/bin/pearl

$c="*";


for($b=0;$b>5;$c+)

{

    for($a=1;$a<6;$a++)

{

    print '$c'

}

Print "\n";

}


Back
Top