summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorseh <henesy.dev@gmail.com>2019-03-18 03:58:43 -0500
committerseh <henesy.dev@gmail.com>2019-03-18 03:58:43 -0500
commit50bc0b3fb51052b59bf8873dc7eaf68257ef91d1 (patch)
treedf8a09c39825e20121f85170d5799008ad76ce6e /Modules
parentbe5690bf05707107bc6f02005af82399b0c1c655 (diff)
more addresses
Diffstat (limited to 'Modules')
-rw-r--r--Modules/README.md33
1 files changed, 32 insertions, 1 deletions
diff --git a/Modules/README.md b/Modules/README.md
index 93715d7..bf0cc4d 100644
--- a/Modules/README.md
+++ b/Modules/README.md
@@ -6,10 +6,41 @@ Disclaimer: At the time of writing I am not exceptionally well-versed with modul
## Source
-###
+### persons.m:1,11
+Function definitions:
+
+- init() ­ persons.b:7,9
+- mkperson() ­ persons.b:11,13
+- getpop() ­ persons.b:15,18
+
+Note: In a way, a module definition acts as an interface which dictates which functions, variables, and types are accessible from outside the module's implementation proper.
+
+### towns.m:1,14
+
+
+
+Function definitions:
+
+- init() ­ towns.b:5,7
+- mktown() ­ towns.b:9,11
+
+### modules.b:25,29
+
+
+
+### modules.b:31,39
+
+
+
+### modules.b:41,45
+
+
+
+Note: The type `Person` is imported at modules.b:13.
+
## Demo
; modules