学习 Ada 并尝试制作堆栈 ADT,我正在使用这个网页来解决这个问题。 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;
堆栈广告
package Stack is
function awd () return Integer;
end Stack;
堆栈.adb
package body Stack is
function awd () return integer is
begin
return 1;
end awd;
end Stack;
错误是
stack.ads:2:19: identifier expected
我很确定我做的一切都是正确的。