Adaを学び、スタックADTを作成しようとしています。私は、このWebページを使用してそれを理解しています。 http://www.functionx.com/ada/Lesson06.htm
エイトクイーンズ.adb
with Ada.Text_IO;
use Ada.Text_IO;
with Stack;
use Stack;
procedure EightQueens is
begin
put_line ("awd");
end EightQueens;
stack.ads
package Stack is
function awd () return Integer;
end Stack;
stack.adb
package body Stack is
function awd () return integer is
begin
return 1;
end awd;
end Stack;
エラーは
stack.ads:2:19: identifier expected
私はすべてを正しく行ったと確信しています。