Home
CBM
  ASCII-X
  BASIC
    Disk Commands
    Enter RUN mode
    Program Format
    Secret Variables
    Variable Format
    Expressions
    Keywords
      (divide)
      (equal)
      (less)
      (minus)
      (more)
      (multiply)
      (plus)
      (power)
      Abs
      And
      Append
      Asc
      Atn
      Auto
      Backup
      Bank
      Begin
      Bend
      Bload
      Boot
      Box
      Bsave
      Bump
      Catalog
      Char
      Chr
      Circle
      Close
      Clr
      Cmd
      Collect
      Collision
      Color
      Concat
      Cont
      Copy
      Cos
      Data
      Dclear
      Dclose
      Dec
      Def
      Delete
      Dim
      Directory
      Dispose
      Dload
      Do
      Dopen
      Draw
      Ds
      Ds string
      Dsave
      Dverify
      El
      Else
      End
      Envelope
      Er
      Err
      Exit
      Exp
      Fast
      Fetch
      Filter
      Fn
      For
      Fre
      Get
      Get num
      Getkey
      Go
      Gosub
      Goto
      Graphic
      Gshape
      Header
      Help
      Hex
      If
      Input
      Input num
      Instr
      Int
      Joy
      Key
      Left
      Len
      Let
      List
      Load
      Locate
      Log
      Loop
      Mid
      Monitor
      Movspr
      New
      Next
      Not
      Off
      On
      Open
      Or
      Paint
      Peek
      Pen
      Pi
      Play
      Pointer
      Poke
      Pos
      Pot
      Print
      Print num
      Pudef
      Quit
      Rclr
      Rdot
      Read
      Record
      Rem
      Rename
      Renumber
      Restore
      Resume
      Return
      Rgr
      Right
      Rlum
      Rnd
      Rreg
      Rspcolor
      Rsppos
      Rsprite
      Run
      Rwindow
      Save
      Scale
      Scnclr
      Scratch
      Sgn
      Sin
      Sleep
      Slow
      Sound
      Spc
      Sprcolor
      Sprdef
      Sprite
      Sprsav
      Sqr
      Sshape
      St
      Stash
      Step
      Stop
      Str
      Swap
      Sys
      Tab
      Tan
      Tempo
      Then
      Ti
      Ti string
      To
      Trap
      Troff
      Tron
      Until
      Using
      Usr
      Val
      Verify
      Vol
      Wait
      While
      Width
      Window
      Xor
    Syntax
    Tokens
  C128
  D64plus
  Disk
  Escape Codes
  Hardware
  PCxface
  PETSCII
  Pet2asc
Futurama
IBM PC-AT
Contact
Games
Glossary
Hall of fame
Hall of shame
Miscellaneous
Privacy policy
Programming
Twisty puzzles
KeywordAbbreviationToken (hex)Version(s)Classification
ENDE{Shift+N}801.0 to 4.7Command* and Statement
ENDnone807.0Command* and Statement

 
Syntax 
END
 
 
Purpose 
Program flow control.  Stop executing the current program and enter direct mode.

 
 
Remarks 
This statement is normally optional as the program will terminate after executing the last line of the program.  However it is required when the program logically ends in the middle of the program listing.  That is, when some code (typically subroutines) that should not be directly executed follow the logical end. 
 
Example:
10 GOSUB 100
20 PRINT "HELLO "; N$
30 END
100 N$="" : PRINT "WHAT'S YOUR NAME?";
110 INPUT N$
120 IF LEN(N$)<1 OR LEN(N$) > 20 THEN GOTO 100
120 RETURN
 
In the example, the END on line 30 is required to prevent execution from continuing into the subroutine that starts on line 100.
 
* END may be entered as a command in direct mode, but it has no effect.  Another quirk is that CONT is allowed after the program executes END.  This would be bad in most programs, like the example, because it would eventually cause a RETURN WITHOUT GOSUB error.
 
This statement updates a secret variable.  It is secret because BASIC provides no way to read the value (except for machine-specific PEEK).  It sets the secret variable to "in direct mode" (0).
 
In version 2.0 and before, using LIST in a program would end the program after the listing finished.
 
In any version, using NEW in a program will "end" the program, "permanently" if you don't have a copy saved somewhere.
 
Compare With 
 
Contrast With 
 
See Also 

© H2Obsession, 2014