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
+noneAA1.0 to 7.0Operator (3)

 Syntax 
augend addend
 ~ or ~
+ augend
 
ParametersTypeLegal Value(s)Default ValueNote(s)
augendNumeric or String
any
addendNumeric or Stringany
Type must be the "same" as augend (numeric or string)
 
ReturnsTypeValue(s)Note(s)
sumNumeric
any
Form 1, numeric types
concatenationString0 ~ 255 chars
Form 1, string types
augendNumeric or String any Form 2 
 
 Purpose 
Calculate an arithmetic expression or concatenate two strings.

 
 Remarks 
The plus operator has two primary roles:
  • calculates the sum of two numbers (I'm not going to explain how addition works),
  • or it appends the addend string to the end of the augend string
In these roles, the arguments must both be numeric or both be strings.  (If they are numeric, they don't have to be the exact same type... you can add an integer to a floating-point for example).  Trying to combine string and numeric types generates TYPE MISMATCH ERROR.  When combining two strings, the concatenation (result string) must have no more than 255 characters, otherwise STRING TOO LONG ERROR occurs.
 
Another role for the plus operator, shown by the second form of Syntax above is a "no operation": BASIC just skips the token.  This is not like REM because the plus "no operation" only works when BASIC is looking for an expression, and it only skips one token, not the remainder of the line.  (Trivia, when you enter a program line in direct mode, BASIC is looking for a literal number, not an expression; so trying to enter the line number 10 as +10 PRINT "HELLO" will generate an error instead of storing the text as a program line.)  More trivia: I think mathematicians would call this role the identity operator.
 
If the absolute value of the result is greater than 1.70141183e+38 then an OVERLOW ERROR occurs.  If the absolute value of the result is less than 2.93873588e-39 then it silently underflows to zero (I'm pretty sure this can only happen when the result really should be zero).
 
The plus operator has the third-highest fixed priority (the lowest arithmetic operator, but greater than relational and boolean operators).  The user of course may over-ride the built-in operator priorities by using parentheses "(" and ")".
 
Like all operators, the result may be printed, stored in an appropriate variable, or combined with other functions and operators in a larger expression.  For storing a numeric result (the sum of two numbers), if the variable is an integer then the minimum result that can be stored is -32768 and the maximum is +32767; otherwise an ILLEGAL QUANTITY ERROR is generated.
 
 
 Compare With 
^, *
 
 Contrast With 
 
 See Also 

© H2Obsession, 2014