I'm using Turbo Pascal 7.0 run in windows 98se, when I started write simple program like:
Program user_input;
USES crt;
VAR
text : string;
BEGIN
writeln( 'What is your name?' );
readln ( text );
writeln;
writeln( 'Hello ', text );
readln;
END.
my simple program doesn't want to run and every time I uses preprocessor the result is same "fail". Btw every time I run It came with message run time error 200.
Is this mean that I cannot use my preprocessor (Uses crt, Uses dos,etc)?
Is there anyone can help me, please?