8 lines
83 B
Plaintext
8 lines
83 B
Plaintext
|
float foo(float x) {
|
||
|
return x * x;
|
||
|
}
|
||
|
|
||
|
void main() {
|
||
|
float x = foo(true);
|
||
|
}
|