doc/tutorial/basics: add basics tutorial
Change-Id: I350244d6db5e20be4ab3913dc864f61923b2738f
diff --git a/doc/tutorial/basics/comments.md b/doc/tutorial/basics/comments.md
new file mode 100644
index 0000000..76d6ace
--- /dev/null
+++ b/doc/tutorial/basics/comments.md
@@ -0,0 +1,25 @@
+[TOC](Readme.md) [Prev](foldany.md) [Next](numberlit.md)
+
+# Comments
+
+CUE supports C-style block and line comments.
+
+<!-- CUE editor -->
+```
+// whole numbers
+one: 1
+two: 2
+
+/* fractions
+ */
+"two-and-a-half": 2.5
+```
+
+<!-- JSON result -->
+```json
+{
+ "one": 1,
+ "two": 2,
+ "two-and-a-half": 2.5
+}
+```
\ No newline at end of file