From: Jason Self Date: Sun, 2 Jun 2019 16:15:31 +0000 (-0700) Subject: Add Uncommon and deprecated statements X-Git-Url: https://jxself.org/git/?p=inform-resources.git;a=commitdiff_plain;h=842cdcf6dea5feaeeb6db4b6c3ef014785cc1f09 Add Uncommon and deprecated statements --- diff --git a/informqr/informqr.md b/informqr/informqr.md index fd3ab8b..9e3f72d 100644 --- a/informqr/informqr.md +++ b/informqr/informqr.md @@ -487,4 +487,37 @@ To change the font attributes: style underline ; ! style reverse ; ! ... - style roman; \ No newline at end of file + style roman; + +Uncommon and deprecated statements +---------------------------------- + +To jump to a labelled statement: + + jump label; + ... + .label; statement; + +To terminate the program: + + quit + +To save and restore the program state: + + save label; + ... + restore label; + +To output the Inform compiler version number: + +inversion; + +To accept data from the current input stream: + + read text_array parse_array routine; + +To assign to one of 32 'low string' variables: + + string N "string"; + Lowstring string_var "string"; + string N string_var; \ No newline at end of file