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