home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.tar / ftp.whtech.com / club100 / ref / ba01a.do < prev    next >
Text File  |  2006-10-19  |  2KB  |  94 lines

  1.  
  2. Title: PARAMETERS
  3.  
  4. NOTE: {enter} means hitting the enter key...
  5.  
  6.  
  7. SPECIAL KEYS IN THE COMMAND MODE OF BASIC
  8.  
  9.  LABEL        display the labels
  10.  PRINT        same as typing: LCOPY {enter}
  11.  SHIFT/PRINT  same as typing: LLIST {enter}
  12.  F1           same as typing: FILES {enter}
  13.  F2           same as typing: LOAD"
  14.  F3           same as typing: SAVE"
  15.  F4           same as typing: RUN {enter}
  16.  F5           same as typing: LIST {enter}
  17.  F8           same as typing: MENU {enter}
  18.  
  19. You may redefine any of the function keys within BASIC.  See KEY under 
  20. Keyboard Input for details. 
  21.  
  22.  
  23. NUMERIC AND STRING OPERATORS
  24.  
  25.  +    addition or unary plus (numeric) or concatenation (string)
  26.  -    subtraction or unary minus
  27.  *    multiplication
  28.  /    division
  29.  \    integer division
  30.  ^    exponentiation
  31.  MOD  modulus arithmetic
  32.  
  33.  
  34. RELATIONAL OPERATORS
  35.  
  36.  <         less than
  37.  >         greater than
  38.  =         equal
  39.  <= or =<  less than or equal to
  40.  >= or =>  greater than or equal to
  41.  <> or ><  not equal to
  42.  
  43.  
  44. LOGICAL OPERATORS
  45.  
  46.  AND  logical AND operation
  47.  OR   logical OR operation
  48.  XOR  exclusive OR operation
  49.  EQV  equivalence operation
  50.  IMP  implication operation
  51.  NOT  logical NOT operation
  52.  
  53.  
  54. OPERATOR HIERARCHY
  55.  
  56.  parentheses
  57.  ^
  58.  +,-
  59.  *,/
  60.  MOD
  61.  +,-
  62.  <>,=,=>,<=,><
  63.  NOT
  64.  AND
  65.  OR
  66.  XOR
  67.  EQV
  68.  IMP
  69.  
  70. NOTE: Within an expression, operators on the same level are evaluated from 
  71.       left to right, with the exception of parentheses, which are evaluated 
  72.       from inside to outside. 
  73.  
  74.  
  75. DATA RANGES
  76.  
  77.  Integers:          -32768 to 32767
  78.  Single precision:  +- 10^-64th to +- 10^62nd (6 significant digits)
  79.  Double precision:  +- 10^-64th to +- 10^62nd (14 significant digits)
  80.  Strings:           0 to 255 characters
  81.  
  82. NOTE: Unless explicitly defined, the Model 100 considers all constants and 
  83.       variables, as well as numeric functions, as double precision. 
  84.  
  85.  
  86. DECLARATION TAGS
  87.  
  88.  %  integer
  89.  !  single precision
  90.  #  double precision
  91.  $  string
  92.  
  93. <EOF>
  94.