home *** CD-ROM | disk | FTP | other *** search
-
- Change No 1
- -----------
-
- A last minute change in Trellis means that all commands in a TScript
- program *must* be seperated from their parameters by one or more spaces.
-
- ie, you can't do...
-
- IFStore%(21)=42THENStore%(21)=43
-
- or
-
- PRINT"Hello"'
-
- They *must* take the form...
-
- IF Store%(21)=42 THEN Store%(21)=43
-
- or
-
- PRINT "Hello"'
-
-
-
- Change No 1
- -----------
-
- In a script file the keywords ELSE and END IF must NOT be indented from
- the sart of the line. This means that you can't do -
-
- ELSE
-
- it must be -
-
- ELSE
-
-