A captured variable in a code fence.
Example, the code fence below has two statements:
- The first statement has a single variable with name x - The second statement has a two variables with names y and z
x
y
z
```scala mdoc val x = 1 val (y, z) = (2, 3) ```
A captured variable in a code fence.
Example, the code fence below has two statements:
- The first statement has a single variable with name
x
- The second statement has a two variables with namesy
andz