1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
```sh var = is_defined key ``` Returns true if the provided variable name (not value) exists. ### Parameters The variable name. ### Return Value True if the variable is defined. ### Examples ```sh key = set "hello world" exists = is_defined key ```