X-Git-Url: https://jxself.org/git/?p=inform-resources.git;a=blobdiff_plain;f=informqr%2Finformqr.md;h=b91f17e40744d7f528144c62704d4ce4b47f7724;hp=8295e07ee3fb04eba88eea131f847cdbffcebb92;hb=bdf7cc9f2cabb6bf9f350e91878990f42d1ad099;hpb=c42dba7bbd5a05f81b00d41aed1579d6a6a01801 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