BBC Micro

BBC BASIC scripts

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]

basic
10 REM Hello World
20
30 MODE 2
40 REPEAT
50 COLOUR RND(7)
60 PRINT "Hello World"
70 UNTIL FALSE
hello_world_1


Hello World [v2]

basic
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."
hello_world_2