3.6.4.38 Separator (macro)

Prints a separating line consisting of a series of dashes across the Script window. NumberOfTabs is the approximate length of the line measured in tabs.


Definition:

Def Separator {
      repeat %1 {
      type -L "---------------"
};
      ty;
};

Example:

Ave = 7;
Npts = 100;
Separator 3;
ty -a "Average          Number of Points";
ty -a  $(Ave)                $(Npts);
Separator 3;