Do not use the symbols =>, =<, or ><. Instead use >=, <=, or <>.

Anti-pattern

If Bar >< 4 Then
End If

Best practice

If Bar <> 4 Then
End If