mirror of https://github.com/Nonannet/copapy.git
9 lines
138 B
C
9 lines
138 B
C
|
|
#include "aux_functions.c"
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
// Test aux functions
|
||
|
|
float a = 16.0f;
|
||
|
|
float g42 = aux_get_42(0.0f);
|
||
|
|
return 0;
|
||
|
|
}
|