From 842cdcf6dea5feaeeb6db4b6c3ef014785cc1f09 Mon Sep 17 00:00:00 2001 From: Jason Self Date: Sun, 2 Jun 2019 09:15:31 -0700 Subject: [PATCH] Add Uncommon and deprecated statements --- informqr/informqr.md | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) 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 -- 2.31.1