TSL语言基础 > TSL语言基础 > 基础知识 > TSL的符号 > 保留字(关键字) > 面向对象支持的保留字

TYPE    

  •   用来定义类:
      Type abcd=class
      Public
       V:Integer;
       Function returnV();
       Begin
        Return V;
       End;
      End;