2009年7月23日木曜日

Ubuntuの GNU Pascal でHello world

[したいこと・しりたいこと]
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