In this chapter, you will understand what a program is and even write your first one. As usual, start with this screen:
Remember, the black blinking rectangle is called the cursor.
Let’s type a program. It begins with line numbers. Type this:
10 PRINT “HELLO MONA”
Press RETURN.
Then type this:
20 GOTO 10
Press RETURN.
The screen looks like this:
Then type this:
RUN
Press ...