跳转到内容

Ada 编程/分隔符/=>

来自维基教科书,开放的书籍,开放的世界

Ada. Time-tested, safe and secure.
Ada. 经时间考验,安全可靠。

上下文

[编辑 | 编辑源代码]
Ada.Float_Text_IO.Put (Speed, Fore => 3, Aft => 1);  -- see RM A.10.9(22,32)
Ada.Numerics.Elementary_Functions.Arctan (X => 0.0, Y => -1.0)  -- see RM A.5.1(6, 9/1)
procedure Exchange is new Swap (Element_T => Character);
Point'(X => 10.0, Y => -1.0)  -- see RM 3.9(32)
begin
  ...
exception
  when Constraint_Error => ...
end;
case Valid is
  when False => ...
  when True  => ...
end case;

维基教科书

[编辑 | 编辑源代码]

Ada 语言参考手册

[编辑 | 编辑源代码]
华夏公益教科书