- Text
- Number
- Boolean
- List
- Time
Text
Stores string data allowing you to create and manage string-based variables.
| Operations | Description |
|---|---|
| Set | Declare a string or Overwrite an existing string |
| Prepend | Add string value at start |
| Append | Add string value at end |
Number
Stores numerical data, representing quantities, counts, or measurements.
| Operations | Description |
|---|---|
| Set | Declare a number or Overwrite an existing number |
| Plus | Add a value |
| Minus | Subtract a value |
Boolean
Represents true or false values, often used for making conditional decisions or indicating states.
The boolean datatype has the following properties that can be used.
| Operations | Description |
|---|---|
| Set | Declare a boolean or Overwrite an existing boolean |
List
Stores an ordered collection of items ofstring or number data type, ideal for managing multiple values.

| Operations | Description |
|---|---|
| Set | Declare a array or Overwrite an existing array |
| Prepend | Add a value at start of list |
| Append | Add a value at end of list |
Time
Stores specific points in time (e.g., dates, timestamps) or durations (e.g., hours, minutes).
| Operations | Description |
|---|---|
| Set | Declare a time value or Overwrite an existing time value |