Create the font data set REFLIB.FIGURES for a
triangle, a heart, and a circle with slash. The first figure, a right-pointing
triangle that is assigned the character code A, is a polygon drawn with three
straight lines.
data reflib.figures;
input char $ ptype $ x y segment lp $;
datalines;
A W 0 64 0 P /* triangle pointing right */
A V 4 4 1 P
A V 60 32 1 P
A V 4 60 1 P
A V 4 4 1 P