Update llm.md (#164)

Without the print on the `llm` call, the new user sees no visible effect
when just getting started. The assumption here is the new user is
running this in a new sandbox script file or repl via copy-paste.
This commit is contained in:
Jim Salmons 2022-11-20 16:22:53 -07:00 committed by GitHub
parent e49fc51492
commit e9baf9c134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,5 +21,5 @@ We can now call it on some input!
```python
text = "What would be a good company name a company that makes colorful socks?"
llm(text)
print(llm(text))
```