mirror of https://github.com/decompals/wibo.git
7 lines
107 B
C
7 lines
107 B
C
|
float apple = 3.0f;
|
||
|
float banana = 65.32f;
|
||
|
|
||
|
int something(void) {
|
||
|
return (int)(apple * banana) % 11;
|
||
|
}
|