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