Add Uncommon and deprecated statements
authorJason Self <j@jxself.org>
Sun, 2 Jun 2019 16:15:31 +0000 (09:15 -0700)
committerJason Self <j@jxself.org>
Sun, 2 Jun 2019 16:15:31 +0000 (09:15 -0700)
informqr/informqr.md

index fd3ab8b855082313405ed25f4350ac2981440d92..9e3f72d7f641b03eb5f1bbd52536376707d83a04 100644 (file)
@@ -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