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 instanceof

Description

Returns the type of a variable.

Example

mutex lock;
string varType;

# varType will be set to "mutex"
instanceof lock varType;

# varType will be set to "int"
int testInt = 5;
instanceof testInt varType;