Here are some possible additions to the wiki. I think these programs are good for beginners and such.
prgmAGE
This program waits for user input of a number. If the number is less than 18 it will display "YOU ARE A KID" or if you input a number over 18 it will display "YOU ARE OLD". Now I know this is simple and can be improved but again, this is for beginners
:ClrHome
:Input "HOW OLD ARE YOU?
:ClrHome
:If A<18
:Then
:Goto A
:Else
:Goto B
:
:Lbl A
:ClrHome
:Disp "YOU ARE A KID"
:Goto C
:
:
:Lbl B
:ClrHome
:Disp "YOU ARE OLD"
:Goto C
Lbl C
:Pause
prgmLUCKYNUM
ClrHome
Disp "YOUR LUCKY NUMBER IS: "
Output(8,8,randInt(1,100))
Pause
I will be adding more later