wibo/test/test.c
Ethan Roseman d92f0d1d08
Readme changes, github actions ci, test (#1)
* 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
2022-07-01 04:23:00 +09:00

7 lines
107 B
C

float apple = 3.0f;
float banana = 65.32f;
int something(void) {
return (int)(apple * banana) % 11;
}