I wrote:
for example, i need something as "delay(milliseconds)" but i can't find anything similar. ok, in C, i'd use "usleep()", but what in Pascal?
Program Foo;
uses Crt;
begin Delay ( 42 ) end.
Sollte man aber nur eingeschränkt empfehlen, d.h. nur wenn man eh CRT benutzt. Nur wegen Delay CRT zu benutzen, ist weder in GPC noch in BP sehr sinnvoll (nur, daà BP keine einfache Alternative bietet)...
Oops, sorry, wrong language...
What I said is: This is only recommendable if you use CRT anyway. It's not a good idea to use CRT just for Delay, neither in GPC nor in BP. Just that BP does not offer any easy alternative, but GPC does (Sleep and SleepMicroSeconds in the GPC unit).
Frank