Hi !
I'm experiencing a destabilizing behaviour with arrays.
I want a global array to store data. In a high-level action, I ask for array creation as documented:
|
Quellcode
|
1
|
def(miaou, array);
|
Then I start using it:
|
Quellcode
|
1
|
set( miaou[0].stuff, "meow" );
|
But this tells me :
WARNING: set miaou[0].stuff=meow - miaou is not an array!
... WHY ?!?
If I don't use DEF(), it works... ^_^ But I don't really like using data I don't initialize...
Pleaaaase, help ! :D