You got it.

Or you can try running one from melabs, like Dave suggested.
http://melabs.com/samples/LABX4-12F68x/

Code:
' Name        : BLINKX4.pbp
' Compiler    : PICBASIC PRO Compiler 2.6
' Assembler   : PM or MPASM
' Target PIC  : PIC12F683
' Hardware    : LAB-X4 Experimenter Board
' Oscillator  : 4MHz internal
' Keywords    : 
' Description : PICBASIC PRO program to blink an LED connected
' to GPIO.0 about once a second.
'

LED Con 0        ' Alias GPIO.0 to LED

   ANSEL = 0     ' Set all digital
   CMCON0 = 7    ' Analog comparators off

mainloop:
   Low LED       ' Turn on LED connected to GPIO.0
   Pause 500     ' Delay for .5 seconds
   High LED      ' Turn off LED connected to GPIO.0
   Pause 500     ' Delay for .5 seconds
   Goto mainloop ' Go back to mainloop and blink LED forever

   End