KILL |
Kill allows you to delete a variable or class of variables.
Kill var_clas_list
|
Element |
Description |
Restrictions |
|
var_clas_list |
List of classes or variable_names separated by the comma (,) |
Class can only be [V] or [L]. The variables on the list must exist. |
# Deletion of an indexed variable of the
Char type
Kill CHAINE
# Deletion of a single-sized numeric
variable
Kill AMOUNT
# Deletion of all variables from the [V]
class
Kill [V]
Kill allows you to delete a variable - indexed or not - or an entire class. Only the variables of the [V] or [L] class can be deleted by the Kill instruction.
|
Error |
Description |
|
ERVARI ( 6) |
Variable does not exist. |
|
ERCLAS ( 7) |
Class does not exist. |
|
ERVARC (34) |
Class different from [V] or [L] or variable not defined in the [V] or [L] class |
|
|