added "showdef" related information to the readme. -- noch

This commit is contained in:
norayr 2016-12-06 18:28:33 +04:00
parent 8d28c1b1bb
commit 58ea173d94

View file

@ -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).