Metropoli BBS
VIEWER: progp045.pas MODE: TEXT (ASCII)
{**********************************************************************}
{ Display three consecutive characters starting at the end of the	}
{ 80x25 screen 							}
{**********************************************************************}

procedure write_one_char;
begin
	write_char('A', 24, 40);               { First character      }
	write_char('B', 24, 41);               { Second character     }
	write_char('C', 24, 42);               { Third character      }
end;
[ RETURN TO DIRECTORY ]