doc/tutorial/basics: add basics tutorial

Change-Id: I350244d6db5e20be4ab3913dc864f61923b2738f
diff --git a/doc/tutorial/basics/stringlit.md b/doc/tutorial/basics/stringlit.md
new file mode 100644
index 0000000..65a78e9
--- /dev/null
+++ b/doc/tutorial/basics/stringlit.md
@@ -0,0 +1,33 @@
+[TOC](Readme.md) [Prev](numberlit.md) [Next](bytes.md)
+
+# String Literals
+
+CUE stings allow a richer set of escape sequences.
+
+CUE also supports multi-line strings, enclosed by a pair of triple quotes `"""`.
+The opening quote must be followed by a newline.
+The closing quote must also be on a newline.
+The whitespace directly preceding the closing quote must match the preceding
+whitespace on all other lines and is removed from these lines.
+
+Strings may also contain [interpolations](interpolation.md).
+
+<!-- CUE editor -->
+```
+// 21-bit unicode characters
+a: "\U0001F60E" // 😎
+
+// multiline strings
+b: """
+    Hello
+    World!
+    """
+```
+
+<!-- JSON result -->
+```json
+{
+    a: "😎"
+    b: "Hello\nWorld!"
+}
+```