This page contains scripts that I have written.
Some of these scripts are very straight forward. They are designed to help teach how to use BASIC.
Others are more complicaited applications.
When looking at these scripts I would suggest you use the following resources to assist you:
Hello World [v1]
10 REM Hello World
20
30 MODE 2
40 REPEAT
50 COLOUR RND(7)
60 PRINT "Hello World"
70 UNTIL FALSE
Hello World [v2]
10 REM Hello World
20 CLS
30 PRINT "Hello World"
40 INPUT "Please enter your name", NAME$
50 CLS
60 PRINT "Hello "; NAME$; ","
70 PRINT "Welcome to the Hello Program."