I am new to PICBasic Pro and the PICkit2 Starter Kit which I just purchased. I could get the PCBDemo to run via the PICkit2 with the PIC16F690 that came on the Demo board. However, when I tried run one of the sample programs that comes with PCIBASICPro Demo (SLEEP.bas), it compiles OK with MCS and I can import the resulting hex file into PICkit2 and target the device. It appears to write to the device OK, although the Verify finds an error mismatch in the Data memory, which I presume is not critical since the device has not executed the program yet or created any stored data.
However, when I try to run the program that was written to the device by clicking the box for /MCLR the program doesn't run. Here is the code I am trying to run which is very simple. Can anyone advise me what I may be doing wrong :in trying to run this program in PICkit2??
'SLEEP Command
'Slowly blink LED using low power mode delay

LED CON 16 'Identify LED pin

Loop:
TOGGLE LED
SLEEP 10
GOTO loop