]> git.mdlowis.com Git - archive/dlang.git/commitdiff
Added description of escape characters
authorMike D. Lowis <mike@mdlowis.com>
Thu, 15 Mar 2012 19:28:08 +0000 (15:28 -0400)
committerMike D. Lowis <mike@mdlowis.com>
Thu, 15 Mar 2012 19:28:08 +0000 (15:28 -0400)
LANGUAGE.markdown

index ef21bb8d7b9b3f630df90452b2fd7a28c99f55f8..fc2e0a7d2792c18090b5eb3c122c20b29b4a9067 100644 (file)
@@ -37,7 +37,17 @@ Here are some examples for defining numbers:
 #### Characters
 
     'A'
-    '\x00'
+
+    \a    Bell
+    \b    Backspace
+    \f    Form feed
+    \n    New line
+    \r    Carriage return
+    \t    Tab \v Vertical Tab
+    \\    Backslash
+    \"    Double Quote
+    \x    Hexidecimal value
+    \u    Unicode character
 
 #### Symbols