shithub: mc

Download patch

ref: 101055e7124440902d505226693abb07245d5695
parent: f244460f1d4a0f828ed8f394759963cffb6f4819
author: Ori Bernstein <[email protected]>
date: Sun Aug 12 14:16:16 EDT 2012

Explain the interchanability of ';' and \n

--- a/doc/lang.txt
+++ b/doc/lang.txt
@@ -73,14 +73,16 @@
         if              while
 
 
-    At the current stage of development, not all of these keywords
-    are implemented within the language.[1]
+    At the current stage of development, not all of these keywords are
+    implemented within the language.[1]
 
-    Literals are a direct representation of a data object within the
-    source of the program. There are several literals implemented
-    within the Myrddin language. These are fully described in section
-    3.2 of this manual.
+    Literals are a direct representation of a data object within the source of
+    the program. There are several literals implemented within the language.
+    These are fully described in section 3.2 of this manual.
 
+    In the compiler, single semicolons (';') , semicolons and newlines (\x10)
+    characters are treated identically, and are therefore interchangable.
+    They will both be referred to "endline"s thoughout this manual.
     
 
 3. SYNTAX OVERVIEW: