Display (command): Difference between revisions

From BR Wiki
Jump to navigation Jump to search
(Imported DISPLAY command page from old wiki)
 
(edit)
Line 3: Line 3:
line-number (that caused the change)  variable-name  new-value
line-number (that caused the change)  variable-name  new-value


====Syntax====
==Syntax==
 


[[File:Display.png]]


  DISPLAY <nowiki>[ -p prog-name-substr ] var-name [ OFF | PRINT | >filename]</nowiki>
  DISPLAY <nowiki>[ -p prog-name-substr ] var-name [ OFF | PRINT | >filename]</nowiki>


The -p parameter specifies which [[program]] or programs the statement pertains to. If not specified, then the full BR path to the current program is stored as the program name search string. However the substring value could be used as a [[mask]] to apply to multiple program [[libraries]].


{{Future
==See Also==
|  DISPLAY <nowiki>[ -p program-name-substr ]  ALL  [ OFF | PRINT | >filename ]</nowiki>
}}
 
 
The -p parameter specifies which [[program]] or programs the statement pertains to. If not specified, then the full BR path to the current program is stored as the program name search string. However the substring value could be used as a [[mask]] to apply to multiple program [[libraries]].


====See Also====
*[[Break]]
*[[Break]]
*[[Display (disambiguation)]]
*[[Display (disambiguation)]]

Revision as of 13:37, 27 December 2011

The Display command shows the value of individual variable(s) or all variables, after any changes, plus the line number associated with the change(s), in the format:

line-number (that caused the change) variable-name new-value

Syntax

DISPLAY [ -p prog-name-substr ] var-name [ OFF | PRINT | >filename]

The -p parameter specifies which program or programs the statement pertains to. If not specified, then the full BR path to the current program is stored as the program name search string. However the substring value could be used as a mask to apply to multiple program libraries.

See Also