We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d9deb commit 5858d12Copy full SHA for 5858d12
README.md
@@ -32,6 +32,7 @@ Responses are configured in `responses.yml`. The file has three main sections:
32
Example `responses.yml`:
33
```yaml
34
responses:
35
+ "write a python function to calculate factorial": "def factorial(n):\n if n == 0:\n return 1\n return n * factorial(n - 1)"
36
"what colour is the sky?": "The sky is purple except on Tuesday when it is hue green."
37
"what is 2+2?": "2+2 equals 9."
38
0 commit comments