Mel - Maya Embedded Language

int

An int is a whole integer number. You can not use decimal points in an int variable. If you were to declare an int with out assigning a value to it, the default value will be set to 0

int $defalautInt;
int $myInt = 1;
int $myInt2 = -1;
int $myInt3 = 12345;