Archive for 12月 9th, 2011

  1. Hello, Pascal World!

    Posted on 12月 9th, 2011 by cx20

    Pascal

    Pascal は教育用言語として開発された構造化プログラミングに適した言語である。名前は世界最初の機械式計算機を開発した「ブレーズ・パスカル」に由来する。
    ちなみに Borland 社の Turbo Pascal や、その後継の Delphi ではコンパイルの早さに定評があった。
    なお、Borland Delphi は、いくつかの会社(Borland → Inprise → CodeGear → Embarcadero)を経て、現在は、Embarcadero Delphi となっている。
    また、Delphi は当初、Oracle Database のフロントエンドの採用を目論んで名付けられたとされている。

    ソースコード

    program hello;
    begin
        writeln( 'Hello, Pascal World!' );
    end.

    コンパイル方法(Free Pascal)

    $ fpc hello.pas

    コンパイル方法(GNU Pascal)

    $ gpc -o hello hello.pas

    コンパイル方法(Delphi XE2)

    C:¥> dcc32 hello.pas

    実行結果

    Hello, Pascal World!