subprogram.ads
来自「Ada 2005 Training Notes.」· ADS 代码 · 共 17 行
ADS
17 行
package Subprogram is type Vector is array(Integer range <> ) of Float; subtype ARecordRange is Integer range 1..10; type ARecord is record V: Vector(ARecordRange); I: Integer; end record; procedure PassArrayParameter(V: in out Vector); procedure PassRecordParameter(R: in ARecord);privateend Subprogram;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?