Question: Logical comparator question

What am I doing wrong here, or don't understand about Maple. I followed the 'IF' structure from Maple help. I am getting the wrong result.

a := 1:
b := 3:
if a > b then
    print(wrong)
else
    print(correct)
end if
                            correct
 
Please Wait...