Import
We can use import
to reference definitions in other files.
Thus one file can be viewed as a module of definitions.
The current file is located at "/module/import.md"
,
we can use relative path "../datatypes/nat.md"
, to locate "/module/database/nat.md"
,
in which a datatype
called Nat
is defined (we will talk about Nat
in the following chapters),
and we import this definition.
Under some URLs, there are files.
We can even import
from them.
Since the name Nat
is already imported, and we can not redefine names. We use Nat as NatFromURL
to rename the imported definition.