//Pascal ABC.NET 3.1 сборка 1256
uses
GraphABC;
Const
s='Sample text';//текст
d=10;//задержка
Var
x:integer;
begin
randomize;
x:=windowwidth;
while x>=0 do
begin
textout(x,windowheight-20,s);
setfontcolor(rgb(random(255),random(255),random(255)));
sleep(d);
dec(x);
clearwindow;
end;
end.