indeed!
also, you don't need brackets around array initializers:
beeoid[] 1, 2, 3;
also², you can assign multiple values to non-arrays:
beeoid 1, 2, 3;
the value beeoid
here would be one, but the value of *(&beeoid + 1)
would be 2.
also³, you don't need brackets around function bodies if they're a single statement:
add(a, b) return a + b;