Open2
Seed7でAtCoderのAPG4bをやるやつ
Pascal 系(?)の言語の Seed7 でAPG4bをやります.
- 参考
Seed7 Homepage https://seed7.sourceforge.net/index.htm
A "Hello, world!" を出力するやつ.
$ include "seed7_05.s7i";
const proc: main is func
begin
writeln("Hello, world!");
end func;
-
$ include "seed7_05.s7i";
は標準ライブラリを読み込んでいるらしいです. -
const 型名: 変数名 is 値
でしょうか?- main 関数を定義しているのでしょう.
- おそらく,
func ... end func
までが値(関数)でしょう.
- Pascal系列(?)らしく,
begin ... end
でブロックを区切ります. -
writeln
は標準ライブラリの関数で, string と改行をアウトプットします.