doc/tutorial/basics: add basics tutorial
Change-Id: I350244d6db5e20be4ab3913dc864f61923b2738f
diff --git a/doc/tutorial/basics/interpolation.md b/doc/tutorial/basics/interpolation.md
new file mode 100644
index 0000000..43aa635
--- /dev/null
+++ b/doc/tutorial/basics/interpolation.md
@@ -0,0 +1,21 @@
+[TOC](Readme.md) [Prev](operators.md) [Next](interpolfield.md)
+
+# Interpolation
+
+String and bytes literals support interpolation.
+
+Any valid CUE expression may be used inside the escaped parentheses.
+Interpolation may also be used in multiline string and byte literals.
+
+<!-- CUE editor -->
+```
+"You are \( cost - budget ) dollars over budget!"
+
+cost: 102
+budget: 88
+```
+
+<!-- result -->
+```
+"You are 14 dollars over budget!"
+```
\ No newline at end of file