mirror of
https://github.com/decompals/wibo.git
synced 2025-07-11 23:55:55 +00:00
* Readme changes, github actions ci, test * Std flag change for older GCC versions" * Install gcc multilib * test fix and formatting * Don't segfault on nonexistant file and show error instead * Update ci.yml * PR comments * remove silly bit
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;
|
|
}
|