# 0104: Expected a value for the switch case

Compiler expected a value to follow the `case` keyword but found something else.

This error may occur if left `case` alone on the line:

```pascal
switch 0@
  case
end
```

**Possible solutions:**

* make sure you follow the [switch statement](/language/control-flow/switch.md) syntax and provide a value compatible with the switch variable, i.e. a number or a string. Values can be comma-delimited if they work for the same case.

```pascal
switch 0@
   case 1, 2, 3
     0ace: "Value is 1, 2, or 3"
   case 5
     0ace: "Value is 5"
   default
     0ace: "Value is not 1, 2, 3, or 5"
end
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sannybuilder.com/troubleshooting/errors/0104.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
