I found a few things that are not working for me, probably just not supported, but just in case I'm missing something.
- Static arrays (I know there is a dynamic array addon).
- structs ( works as class).
- bool conversion.
int arr[6];
struct str{
int a;
int b;
}
bool b = true;
int i = b;
Any suggestion?