X-Git-Url: https://jxself.org/git/?p=inform-resources.git;a=blobdiff_plain;f=informqr%2Finformqr.md;fp=informqr%2Finformqr.md;h=9e3f72d7f641b03eb5f1bbd52536376707d83a04;hp=fd3ab8b855082313405ed25f4350ac2981440d92;hb=842cdcf6dea5feaeeb6db4b6c3ef014785cc1f09;hpb=94a6bf5c574208fd73823861ef2c3878c7ef05e4 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