LoginSignup
1
1

More than 5 years have passed since last update.

Ada言語 1日目 Hello, World

Last updated at Posted at 2018-12-09

環境

  • OS : Ubuntu 18.04
  • コンパイラ : gcc 7.3.0  GNAT 7.3.0
  • リンカ : GNATLINK 7.3.0

ソース

main.adb
with Ada.Text_IO;
use Ada.TextIO;

procedure main is

begin

    Ada.Text_IO.Put_Line("Hello, World");

end main;

コンパイル -> リンク -> 実行

gcc -c main.adb
gnatbind main
gnatlink hello
./main

今後の予定

開発環境や文法について学習する。

日記一覧へ

Ada言語を習得する日記一覧

1
1
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
1
1