我在这里得到了我的免费Pascal代码 -
program HelloWorld;
uses crt;
begin
writeln('Hello, World!');
readkey;
end.
并将其保存到helloworld.pas
。当我用fpc
编译它时,一切正常,编译成功。所以我尝试了fp
,fpc
附带的IDE,也使用了这个编译器。但是在这里,IDE内部编译失败了。主要错误消息:
helloworld.pas(2,6) Fatal: Can't find unit crt used by HelloWorld