View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

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