In C I can do something like
#define SIZE 16
int c[SIZE];
but in Vala when I do
const int SIZE = 16;
int c[SIZE];
I get error during compiling that ends with "undeclared here (not in a function)"
Is there any way to remove magic numbers in vala and replace them with constants?