doc/tutorial/basics: add basics tutorial

Change-Id: I350244d6db5e20be4ab3913dc864f61923b2738f
diff --git a/doc/tutorial/basics/foldany.md b/doc/tutorial/basics/foldany.md
new file mode 100644
index 0000000..f24097e
--- /dev/null
+++ b/doc/tutorial/basics/foldany.md
@@ -0,0 +1,26 @@
+[TOC](Readme.md) [Prev](fold.md) [Next](comments.md)
+
+# Folding all Fields
+
+This also works if a struct has more than one member.
+
+In general, any JSON configuration can be expressed as a collection of
+path-leaf pairs without using any curly braces.
+
+<!-- CUE editor -->
+```
+outer middle1 inner: 3
+outer middle2 inner: 7
+```
+
+<!-- JSON result -->
+```json
+"outer": {
+    "middle1": {
+        "inner": 3
+    },
+    "middle2": {
+        "inner": 7
+    }
+}
+```
\ No newline at end of file