mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-05 23:22:25 +00:00
Build link list based on imports, not on modules compiled by compiler instance.
This commit is contained in:
parent
4a71f43e72
commit
460b879829
7 changed files with 100 additions and 51 deletions
|
|
@ -125,7 +125,7 @@ Alternatively the Oakwood module Out can be used to write directly to stdout:
|
|||
MODULE hello;
|
||||
IMPORT Out;
|
||||
BEGIN
|
||||
Out.String("Hello."); Out.Ln;
|
||||
Out.String("Hello."); Out.Ln
|
||||
END hello.
|
||||
```
|
||||
|
||||
|
|
@ -144,7 +144,7 @@ Execute as usual on Linux (`./hello`) or Windows (`hello`).
|
|||
In order to see the definition of a module's interface, use the "showdef" program.
|
||||
|
||||
```
|
||||
$ showdef Out.sym
|
||||
$ showdef Out
|
||||
DEFINITION Out;
|
||||
|
||||
VAR
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue