2009-11-07から1日間の記事一覧

Pascal で Hello world を試した

Pascal で Hello world してみた。環境は CentOS 5.4。 Hello world を書く {hello.pas} program hello; begin WriteLn("Hello, world"); end. gcc でコンパイルしてみる $ gcc hello.pas gcc: hello.pas: Pascal compiler not installed on this system gcc…