So I am trying to write a hello world program of sorts for a 16f628a chip. I have a led hooked up to portb 3. Here is the code that is not working

Code:
Main:
High PortB.3
pause 100
Low PortB.3
pause 100
goto Main
The led is not turning on. Why is this not working?