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
This commit is contained in:
Ethan Roseman
2022-06-30 15:23:00 -04:00
committed by GitHub
parent f11759cc71
commit d92f0d1d08
6 changed files with 48 additions and 6 deletions

6
test/test.c Normal file
View File

@@ -0,0 +1,6 @@
float apple = 3.0f;
float banana = 65.32f;
int something(void) {
return (int)(apple * banana) % 11;
}