Maybe short script to get you started:
 Code:
;This is to prevent your computer to log off when using kix32.exe
Break On
;Dimension variable to catch return codes that you just want to discard
Dim $RC
;After setting the Option Explicit to On, you must declare all used variables
$ = SetOption("Explicit","On")
;These lines just shows some text
'Hello World'
? "Question Mark will make you go to a new line"
? 'You can concatenate "double quotes" in simple quotes'
? 'Press any key to continue'
Get $RC ;Get catches one keypress, but I just us it to pause the script

This is the screen output:
 Code:
Hello World
Question Mark will make you go to a new line
You can concatenate "double quotes" in simple quotes
Press any key to continue

The kix2010.doc that goes with every package is also very usefull!!