CL$()
This command will return the string passed in as a command line when the program is run as a standalone executable. When this program is created as an EXE file using BUILD EXE or BUILD FINAL, any additional parameters entered after the executable name are treated as a single command line string. You can use this string to control how your executable behaves based on the contents of the string.

For example, you may wish to control whether your program runs in 16, 24 or 32 bit display mode. You could design your program to understand the command line, "GAME.EXE -depth32".

SYNTAX
Return String=CL$()

RELATED INFO
Basic Commands
Glossary

EXAMPLE
Using CL$()