Read the PBP docs, this is the "hello world" program, included in the user manual.
wire a LED on Portb pin like this:



and compile this lines. . .

Symbol LED = portb.0
Trisb=0 ' Make portb as output

Loop:
high LED
Pause 500
Low LED
Pause 500
Goto Loop
END