mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
22 lines
211 B
C++
22 lines
211 B
C++
#include "math.hpp"
|
|
|
|
|
|
#ifdef gen_time
|
|
u32 gen_main()
|
|
{
|
|
return gen_math();
|
|
}
|
|
|
|
#include "gen.cpp"
|
|
#endif
|
|
|
|
|
|
#ifndef gen_time
|
|
int main()
|
|
{
|
|
u32 result = square(5);
|
|
|
|
zpl_printf("TEST RESULT: %d", result);
|
|
}
|
|
#endif
|