From: Jason Self Date: Sun, 2 Jun 2019 15:25:43 +0000 (-0700) Subject: Add Message passing X-Git-Url: https://jxself.org/git/?p=inform-resources.git;a=commitdiff_plain;h=bdf7cc9f2cabb6bf9f350e91878990f42d1ad099 Add Message passing --- 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