From bdf7cc9f2cabb6bf9f350e91878990f42d1ad099 Mon Sep 17 00:00:00 2001 From: Jason Self Date: Sun, 2 Jun 2019 08:25:43 -0700 Subject: [PATCH] Add Message passing --- informqr/informqr.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/informqr/informqr.md b/informqr/informqr.md index 8295e07..b91f17e 100644 --- a/informqr/informqr.md +++ b/informqr/informqr.md @@ -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 -- 2.31.1