📄 crossref.def
字号:
DEFINITION MODULE CrossRef;
(* Create cross reference list of identifiers
P.D. Terry, Rhodes University, January 1992
Release for use with COCO/R system - uses FileIO *)
IMPORT FileIO;
TYPE
TABLES;
VAR
output : FileIO.File;
Table : TABLES;
PROCEDURE Create (VAR Table : TABLES);
(* Initialise a new (empty) Table *)
PROCEDURE Add (VAR Table : TABLES; Name : ARRAY OF CHAR;
Reference : CARDINAL; Defining : BOOLEAN);
(* Add Name to Table with given Reference, specifying whether this is a
Defining (as opposed to an applied occurrence) *)
PROCEDURE List (Table : TABLES);
(* List out cross reference Table on output device *)
END CrossRef.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -