/sys$common/syshlp/helplib.hlb PASCAL, Statements, Assignment, Examples *Conan The Librarian (sorry for the slow response - running on an old VAX) |
X := 1; {variable 'X' is assigned the value 1} T := A < B; {value of Boolean expression 'A < B' is assigned to 'T'} Vowels := ['A', 'E', 'I', 'O', 'U']; {set variable 'Vowels' is assigned the set constructor ['A', 'E', 'I', 'O', 'U']}
|