|
|
|
|
|
by Iv
3630 days ago
|
|
It would only print "1"s. The thing is that basic programs were not entered through a 2D text-editor per rather line per line. You would type "LIST" to re-read the whole program you typed so far, with the lines in the correct order. Then, you would enter a line starting with a number. It would overwrite any existing line with the same number. Typically, a way to correct the program you wrote would be to type: 30 15 PRINT "2" (replace the line 30 by an empty line, and insert a line number 15) |
|