home *** CD-ROM | disk | FTP | other *** search
/ APDL Soft Rock Games / APDL_SOFTROCK.iso / trellis / docs / read_1st < prev   
Encoding:
Text File  |  1999-04-14  |  574 b   |  38 lines

  1.  
  2.         Change No 1
  3.         -----------
  4.  
  5. A last minute change in Trellis means that all commands in a TScript
  6. program *must* be seperated from their parameters by one or more spaces.
  7.  
  8. ie, you can't do...
  9.  
  10.         IFStore%(21)=42THENStore%(21)=43
  11.  
  12. or
  13.  
  14.         PRINT"Hello"'
  15.  
  16. They *must* take the form...
  17.  
  18.         IF Store%(21)=42 THEN Store%(21)=43
  19.  
  20. or
  21.  
  22.         PRINT "Hello"'
  23.  
  24.  
  25.  
  26.         Change No 1
  27.         -----------
  28.  
  29. In a script file the keywords ELSE and END IF must NOT be indented from
  30. the sart of the line. This means that you can't do -
  31.  
  32.  ELSE
  33.  
  34. it must be -
  35.  
  36. ELSE
  37.  
  38.