# Usage Examples
## Basic Paste Creation
**Prompt:** "Create a paste with a Python hello world program"
**Result:**
```
✅ Paste created successfully!
ID: abc123
URL: https://paste.myst.rs/abc123
```
## Multi-File Paste
**Prompt:** "Create a paste with a Python script and a requirements.txt file"
**Result:** Creates a paste with two pasties:
1. main.py (Python code)
2. requirements.txt (dependency list)
## Private Paste
**Prompt:** "Create a private paste with my API keys configuration"
**Note:** Requires API token in config
## Editing Pastes
**Prompt:** "Edit paste abc123 and change the title to 'Updated Code'"
**Prompt:** "Edit this paste to use async/await instead of callbacks"
## Retrieving Pastes
**Prompt:** "Show me the paste with ID xyz789"
**Prompt:** "Get all my pastes"
## Deleting Pastes
**Prompt:** "Delete paste abc123"
**Warning:** This is permanent!
## Language Queries
**Prompt:** "What language uses the .ts extension?"
**Answer:** TypeScript
**Prompt:** "Tell me about the Python language in PasteMyst"
## User Queries
**Prompt:** "Does the user 'codemyst' exist?"
**Prompt:** "Show me information about user 'codemyst'"
**Prompt:** "What are my PasteMyst user details?"
## Advanced Workflows
**Prompt:** "Prepare documentation for my project and create a paste"
**Prompt:** "Create a paste with all popular sorting algorithms"
**Prompt:** "Create a paste that expires in 1 week with this code: [code]"
## Iterative Development
```
You: Create a paste with a Python fibonacci function
Claude: [Creates paste with basic fibonacci]
You: Edit it to use memoization
Claude: [Updates paste with optimized version]
You: Now add unit tests
Claude: [Adds test cases to the paste]
```