fancysky
Newbie level 4
shapeType = "rect"
if ( shapeType == "rect"
then
println( "Shape is a rectangle" )
++rectCount
else
println( "Shape is not a rectangle" )
++miscCount
)
What's mean of lines by red?Thanks.
if ( shapeType == "rect"
then
println( "Shape is a rectangle" )
++rectCount
else
println( "Shape is not a rectangle" )
++miscCount
)
What's mean of lines by red?Thanks.