Hi forum,
I think I found a bug. The following works:
- int[] w = {};
w = append(w,4);
//-----------
String[] x = {};
x = append(x,"Test");
//---------
float[] y = {};
y = append(y,4);
While this doesn't work:
-
long[] z = {};
z = append(z,4);
Should this not be a bug please explain to me my error.
Thank you!
PStiger
1