static float[] reverseFloatArray(float[] a) { int n = l(a); *float[n] b; for i to n: b[n-1-i] = a[i]; ret b; }