X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=informqr%2Finformqr.md;fp=informqr%2Finformqr.md;h=eea256baa78e9c8df3aab8b3c611da1b1405a515;hb=b4e6f6f6d6289dc48db053be2149be75050cbc2e;hp=b91f17e40744d7f528144c62704d4ce4b47f7724;hpb=bdf7cc9f2cabb6bf9f350e91878990f42d1ad099;p=inform-resources.git diff --git a/informqr/informqr.md b/informqr/informqr.md index b91f17e..eea256b 100644 --- a/informqr/informqr.md +++ b/informqr/informqr.md @@ -283,4 +283,23 @@ To a routine: To a string: string.print() - string.print_to_array(array) \ No newline at end of file + string.print_to_array(array) + +Statements +---------- + +Each *statement* is terminated by a semi-colon ";". + +A *statement_block* is a single *statement* or a series of +*statements* enclosed in braces {...}. + +An exclamation "!" starts a comment - rest of line ignored. + +A common statement is the assignment: + + variable = expr ; + +There are two forms of multiple assignment: + + variable = variable = ... = expr ; + variable = expr, variable = expr, ... ; \ No newline at end of file