Commit 48a3491c9f9d79cc1ba20efc73c9baded9473bdf

Jeremy JEANNE 2025-03-31T16:47:11

Doc Quote

diff --git a/doc/1_KC3/1.19_Quote.en.md b/doc/1_KC3/1.19_Quote.en.md
new file mode 100644
index 0000000..2025996
--- /dev/null
+++ b/doc/1_KC3/1.19_Quote.en.md
@@ -0,0 +1,20 @@
+# 1.19 Quote
+
+The KC3 `Quote` type allows you for partial quotes. See `Unquote`.
+
+Quoting is necessary for meta-programming where you want to return
+a quoted value that will not be evaluated except the quote will be
+removed.
+
+## 1.19.1 Examples
+
+```elixir
+ikc3> quote 1 + 1
+1 + 1
+ikc3> quote quote 1 + 1
+quote 1 + 1
+ikc3> type(quote 1 + 1)
+Call
+ikc3> type(quote quote 1 + 1)
+Quote
+```