The Delete Command is used to delete a variable from the current scope's memory (Read about scope in Functions).
The short syntax structure uses the word DELETE:
DELETE VARIABLEThe long syntax structure uses the word DELETE:
DELETE VARIABLENEW INT x = 5
NEW INT y = 10
DELETE x // x is deleted and does not exist
PRINT y // y still existsDELETE x // Runtime error! Variable "x" does not exist!
NEW INT x = 5 // This line is not executed because the program crashed!