addr1.adb
来自「用于进行gcc测试」· ADB 代码 · 共 18 行
ADB
18 行
with System;package body addr1 is task type T is entry Send (Location : System.Address); end; task body T is begin accept Send (Location : System.Address) do declare Buffer : String (1 .. 100); for Buffer'Address use Location; -- Test begin null; end; end Send; end;end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?