Add Message passing
authorJason Self <j@jxself.org>
Sun, 2 Jun 2019 15:25:43 +0000 (08:25 -0700)
committerJason Self <j@jxself.org>
Sun, 2 Jun 2019 15:25:43 +0000 (08:25 -0700)
informqr/informqr.md

index 8295e07ee3fb04eba88eea131f847cdbffcebb92..b91f17e40744d7f528144c62704d4ce4b47f7724 100644 (file)
@@ -259,4 +259,28 @@ To return the adjacent child of an object's parent (or nothing):
 
 To return the number of child objects directly below an object:
 
-    children(object)
\ No newline at end of file
+    children(object)
+
+Message passing
+---------------
+
+To a class:
+
+    class.remaining()
+    class.create()
+    class.destroy(object)
+    class.recreate(object)
+    class.copy(to_object,from_object)
+
+To an object:
+
+    object.property(a1,a2, ... a7)
+
+To a routine:
+
+    routine.call(a1,a2, ... a7)
+
+To a string:
+
+    string.print()
+    string.print_to_array(array)
\ No newline at end of file