Finished to_string initial impl

This commit is contained in:
2023-04-23 00:43:31 -04:00
parent 7ba474069c
commit 09491be375
5 changed files with 328 additions and 76 deletions

51
test/sanity_suite.cpp Normal file
View File

@ -0,0 +1,51 @@
#include "Bloat.cpp"
#ifdef gen_time
#include "gen.cpp"
void case_untyped()
{
}
int gen_main()
{
Memory::setup();
log_fmt("\nPress any key after attaching to process\n");
getchar();
gen::init();
case_untyped();
Memory::cleanup();
return 0;
}
#endif
#ifdef runtime
int main()
{
return 0;
}
#endif

View File

@ -8,13 +8,13 @@ int gen_main()
{
Memory::setup();
zpl_printf("\nPress any key after attaching to process\n");
log_fmt("\nPress any key after attaching to process\n");
getchar();
gen::init();
Memory::cleanup();
return result;
return 0;
}
#endif