Ubuntu の Free Pascal で Hello world
Ubuntuの Free パスカル でHello world
[環境]
Ubuntu Jaunty Jackalope 9.04 on VirtualBox 3.0.2
インストールするもの
fp-compiler
fp-doc
$ sudo apt-get install fp-compiler fp-doc
$ vi hello.pas
program hello;
begin
writeln('Hello, world!');
end.
$ fpc hello.pas
$ ./hello