Variable expected

One of the type keywords (complex, float, int and bool) is not followed by a variable identifier as it should. These keywords may only occur before an assignment. Example:

complex 3 = 3  ; 3 is not a variable

Replace 3 by a variable to correct this:

complex x = 3

See Also
Errors