Glossary

`uses SysUtils;`

This is the **uses clause**. It tells the compiler to include the `SysUtils` unit, which provides utility functions for string handling, date/time, file operations, and more. We include it now to establish the pattern, even though our shell does not strictly need it yet.

Learn More

Related Terms