◄Up► ◄Contents► ◄Index► ◄Back► ─────$TITLE ──────────────────────────────────────────────────────────────── Action $TITLE prints a string on subsequent pages of the source listing. Syntax $TITLE:title Parameter Description title Any valid character constant Remarks The title appears in the upper-left corner of the printout. A program can have multiple $TITLE metacommands. The $TITLE metacommand is equivalent to the /St compiler option. The following program produces a listing in which each page is titled GAUSS (the name of the program). Each subprogram begins on a new page of the listing, and the name of the subprogram appears as a subtitle. Example $TITLE:'GAUSS' C main program here... END $SUBTITLE:'Row Division' $PAGE SUBROUTINE divide(row, matrix, pivot) C subroutine body... RETURN END $SUBTITLE:'Back Substitution' $PAGE SUBROUTINE backsub(matrix) C subroutine body... RETURN END -♦-