Add inspiration section to README
- ID
898b671- date
2026-01-07 21:26:05+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
a0be2e4- message
Add inspiration section to README Added inspiration section linking to Python module.- changed files
1 file, 8 additions
Changed files
README.md (2443) → README.md (2641)
diff --git a/README.md b/README.md
index bb6b3b7..c16948c 100644
--- a/README.md
+++ b/README.md
@@ -26,6 +26,14 @@ q.Q("a %s has %d sides", name, sides)
As well as logging the value, `Q()` logs the name of the calling function, and the expression that you logged.
For example, `Q(2 + 2)` will be logged as `main: 2 + 2 = 4`.
+## Inspiration
+
+This idea comes from Ping Yee's [Python module of the same name](https://github.com/zestyping/q), which is for quick debugging of Python programs:
+
+```python
+import q; q.q(exc)
+```
+
## Example
Here's a longer example of a program that uses `Q()`: