1.基本賦值語句
Size :=20;
Price :=10;
2.特殊符號
1)單個特殊符號
# $ & ' ( ) * + , - . / : ; < = > @ [ ] ^ { }
2)成對的特殊符號
(* (. *) .) .. // := <= >= <>
3).等價的特殊符號
特殊符號 等價的特殊符號 [ (. ] .) { (* } *)3.注釋和編譯器指令
1)注釋
{ Text between a left brace and a right brace constitutes a comment. }
(* Text between a left-parenthesis-plus-asterisk and an asterisk-plus-right-parenthesis is also a comment *)
// Any text between a double-slash and the end of the line constitutes a comment.
2)編譯器指令
{$WARNINGS OFF} 說明:告訴編譯器不要產生警告信息。