volatile1.ads

来自「用于进行gcc测试」· ADS 代码 · 共 23 行

ADS
23
字号
package volatile1 is   type Command is (Nothing, Get);   type Data is      record         Time : Duration;      end record;   type Data_Array is array (Integer range <>) of Data;   type Command_Data (Kind : Command; Length : Integer) is      record         case Kind is            when Nothing =>               null;            when Get =>               Data : Data_Array (1 .. Length);         end case;      end record;end;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?