📄 controller.ads
字号:
-- { dg-do compile } with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;package Controller is type Iface is interface; type Thing is tagged record Name : Unbounded_String; end record; type Object is abstract new Thing and Iface with private;private type Object is abstract new Thing and Iface with record Surname : Unbounded_String; end record;end Controller;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -