Callout Annotations
Callout annotations are a way to add a message to a specific line of code. They are useful for adding context to a line of code or for providing additional information about a line of code.
```ts twoslash
// @log: Custom log messageconst a = 1;// @error: Custom error messageconst b = 1;// @warn: Custom warning messageconst c = 1;// @annotate: Custom annotation messageconst d = 1;
```