Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 373 Bytes

keyword_delete.md

File metadata and controls

16 lines (10 loc) · 373 Bytes

Home Keywords

Keyword delete

Description

Delete a declared variable from current scope and free allocated memory.

Example

int globalScopeVar = 0;

delete "globalScopeVar";
# int globalScopeVar no longer exists and no longer uses memory