doc/tutorial/basics: add basics tutorial

Change-Id: I350244d6db5e20be4ab3913dc864f61923b2738f
diff --git a/doc/tutorial/basics/emit.md b/doc/tutorial/basics/emit.md
new file mode 100644
index 0000000..9268db3
--- /dev/null
+++ b/doc/tutorial/basics/emit.md
@@ -0,0 +1,29 @@
+[TOC](Readme.md) [Prev](aliases.md) [Next](hidden.md)
+
+# Emit Values
+
+By default all top-level fields are emitted when evaluating a configuration.
+CUE files may define a top-level value that is emitted instead.
+
+Values within the emit value may refer to fields defined outside of it.
+
+Emit values allow CUE configurations, like JSON,
+to define any type, instead of just structs, while keeping the common case
+of defining structs light.
+
+<!-- CUE editor -->
+```
+{
+    a: A
+    b: B
+}
+
+A: 1
+B: 2
+```
+
+<!-- result -->
+```
+a: 1
+b: 2
+```
\ No newline at end of file