You can have several statements on a single line and they will all be executed ONLY if the IF is true.

IF A = B then C = A : LOW PORTB.0 : PAUSE 100 : RETURN

Which is the same as ...

IF A = B then
    C = A
    LOW PORTB.0
    PAUSE 100
    RETURN
ENDIF

HTH