Do (keyword)
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
The keyword do always is a part of one of 4 types of control:
1. for loops
for Variable := Expression to Expression do Statement; for each el: String in mylist do
2. while loops
while Expression do Statement;
3. try statements
try Statements except on ExceptionClass do Statement; end;
4. with/using/locking statements
with Expression do Statement;
See Also
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To