Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Pascal の環境構築

Pascal の環境構築したので備忘録。

  • テスト環境
$ cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.3 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.3 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy

インストール

Pascal にはいくつかコンパイラがありますが、今回はFree Pascal Compiler(以下 fpc)を使います。

$ sudo apt-get update -y
$ sudo apt-get install -y fpc

apt-get 以外の人

コンパイル方法

ここでは先程インストールした fpc を使います。

# デフォルトでは実行ファイルの名前はソースコードと同名になります
$ fpc program.pas

# 実行ファイルの名前を指定したい場合は、-o オプションを使います。
$ fpc program.pas -oHelloWorld

サンプルコード

program HelloWorld;
begin
  writeln('HelloWorld');
end.

実行してみる。

$ ./HelloWorld
HelloWorld
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?