Previous: 2.2.1. Tokens and Identifiers To the Table of Contents Next: 2.2.3. Operators and Delimiters
2.2.1. Tokens and Identifiers Table of Contents 2.2.3. Operators and Delimiters

- 2.2.2. -
Table of Contents
2. TMT Pascal Language Description
2.2. Pascal Language Structure
2.2.2. Reserved Words


2.2.2. Reserved Words


Reserved words are identifiers with a specific meaning in TMT Pascal. Their meaning can not be changed or altered in any way. The following is a list of TMT Pascal reserved words:

  and    end    library    shl    
  array    exports    mod    shr  
  asm    file    nil    string  
  begin    for    not    then  
  case    function    object    to  
  const    goto    of    type  
  constructor    if    or    unit  
  declare    implementation    packed    until  
  destructor    in    procedure    uses  
  div    inherited    program    var  
  do    inline    record    while  
  downto    interface    repeat    with  
  else    label    set    xor  


The following table shows TMT Pascal's standard directives. Directives are used only in contexts where user-defined identifiers can't occur. Unlike reserved words, you can redefine standard directives, but we advise that you don't.

  __reader    code    index    postlude    
  __writer    conv    name    private  
  absolute    export    out    public  
  assembler    external    overload    stdcall  
  cdecl    forward    pascal    virtual  



Previous: 2.2.1. Tokens and Identifiers To the Table of Contents Next: 2.2.3. Operators and Delimiters
2.2.1. Tokens and Identifiers Table of Contents 2.2.3. Operators and Delimiters

- 2.2.2. -