Glossary

`downto`

A keyword used in `for` loops when the loop variable should decrease rather than increase. Example: `for i := 10 downto 1 do`. (Ch. 6)

Learn More

Related Terms