The Basic Programming Language

YouTube - The basic of BASIC
Processor of the 1980's 6502. Best practice is to start with line 10 and then go to line 20 and beyond in increments of 10.
10 PRINT "What is your name?"
20 INPUT NAME$
30 PRINT "Hello, "; NAME$; "! Welcome to BASIC programming."
40 END
Line 10: Displays a prompt asking for the user's name.
Line 20: Reads user input and stores it in the variable NAME$.
Line 30: Prints a greeting with the user's name.
Line 40: Ends the program.
XXXXX
XXXXX
XXXXX
XXXXX