Add Compiler
authorJason Self <j@jxself.org>
Sun, 2 Jun 2019 16:55:05 +0000 (09:55 -0700)
committerJason Self <j@jxself.org>
Sun, 2 Jun 2019 16:55:05 +0000 (09:55 -0700)
informqr/informqr.md

index 6043d8d6c399592da856d6db01d92ecec23f575b..ea91c72a2e90366a0d5387b6190af5a23f3b85a8 100644 (file)
@@ -676,4 +676,28 @@ A minimal source file:
       with  name 'rusty' 'blunt' 'axe' 'hatchet'
             description "It seems old and blunt.";
 
-    Include "Grammar";
\ No newline at end of file
+    Include "Grammar";
+
+Compiler
+--------
+
+To compile:
+
+    inform commands source_file
+
+Useful *commands* include:
+
+  -------------- ------------------------------------------------
+  -~S            disable both Strict checks and Debug tools
+  -~SD           disable Strict checks, enable Debug tools
+  -X             enable Infix debugger
+  -r             output all game text to file (for spell-check)
+  -s             display game's size and other statistics
+  -z             display game's memory map
+  -v8            compile in Version 8 format (default is v5)
+  +dir,dir,...   search for Included files in these directories
+  -------------- ------------------------------------------------
+
+To display full compiler help, type:
+
+    inform -h -h1 -h2
\ No newline at end of file