# Demo Test Exercises

## Exercise 1: Create a File

**Task:** Create a file called `test-output.txt` containing the text "Socrates works!" using a single terminal command.

**Validation:**
- [ ] File `test-output.txt` exists
- [ ] File contains the exact text "Socrates works!"

**Hints:**
1. Use `echo` with output redirection (`>`)
2. `echo "Socrates works!" > test-output.txt`

---

## Exercise 2: Explore a Module

**Task:** List all files in the `demo-test` module directory and identify which file types are present.

**Validation:**
- [ ] User can list: module.yaml, content.md, walkthrough.md, quiz.md, exercises.md, quick-ref.md, resources.md, game.yaml, workshop.yaml
- [ ] User identifies the purpose of at least 3 file types

**Hints:**
1. Use `ls` to list directory contents
2. Each file serves a specific role: metadata, content, interactive elements
3. The module.yaml is the entry point that describes the module
