But keep in mind that you have to put : in between every command. (Example) CLS:LOCATE 50,3:PRINT "Hello world!" And then there is ?, which is a shorter version of PRINT (I personally prefer using it). Now lets get into @ (labels). @ is something you can use so have one line of code send you to another line of code using GOTO or GOSUB. (Example) GOTO @2 @Label CLS:PRINT "Hello world!" GOTO @2