mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-05 22:12:24 +00:00
added "showdef" related information to the readme. -- noch
This commit is contained in:
parent
8d28c1b1bb
commit
58ea173d94
1 changed files with 21 additions and 0 deletions
21
ReadMe.md
21
ReadMe.md
|
|
@ -101,6 +101,27 @@ executable binary.
|
|||
|
||||
Execute as usual on Linux ('./hello') or Windows ('hello').
|
||||
|
||||
In order to know module's interface, use "showdef" program.
|
||||
|
||||
```
|
||||
$ showdef Out.sym
|
||||
DEFINITION Out;
|
||||
|
||||
VAR
|
||||
IsConsole-: BOOLEAN;
|
||||
|
||||
PROCEDURE Char(ch: CHAR);
|
||||
PROCEDURE Flush;
|
||||
PROCEDURE Int(x: INT64; n: INT64);
|
||||
PROCEDURE Ln;
|
||||
PROCEDURE LongReal(x: LONGREAL; n: INT16);
|
||||
PROCEDURE Open;
|
||||
PROCEDURE Real(x: REAL; n: INT16);
|
||||
PROCEDURE String(str: ARRAY OF CHAR);
|
||||
PROCEDURE Ten(e: INT16): LONGREAL;
|
||||
|
||||
END Out.
|
||||
```
|
||||
|
||||
Also see [**Compiling**](/doc/Compiling.md).
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue