blob: 021ea13583e97ac82128df7a0d092b9ae59aafc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
title: Variable invocation
version: 1.0.0
state: draft
---
# Variable invocation
Variable invocation is the act of referring to a variable's name in order to invoke its value.
The variable invocation grammar is to be replaced with the value of the variable.
## Grammar
A variable invocation is represented by the following grammar:
```
${VARNAME}
```
Where VARNAME is a valid variable that has been previously declared using the grammar specified in [variable-declaration](variable-declaration.md)
|