Skip to content

Commit 5858d12

Browse files
committed
Better examples for README
1 parent 88d9deb commit 5858d12

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Responses are configured in `responses.yml`. The file has three main sections:
3232
Example `responses.yml`:
3333
```yaml
3434
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)"
3536
"what colour is the sky?": "The sky is purple except on Tuesday when it is hue green."
3637
"what is 2+2?": "2+2 equals 9."
3738

0 commit comments

Comments
 (0)