Assignment
You can freely assign expressions to variables as long as they are of the same type:
int x = 42;
int y = x;
int z = x * y + 7;
BI# automatically converts
int
values to
double
values if required:
int x = 12;
double y = x * 5;