3 lines
80 B
Plaintext
3 lines
80 B
Plaintext
|
float foo(float v[2]) { return v[0]=v[1]; }
|
||
|
void main() { float y[2]; foo(y); }
|