Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

app.cpp 326 B

2 tygodni temu
123456789101112131415
  1. #include <math.h>
  2. #include "core.cpp"
  3. int main(int argc, char **argv) {
  4. int statusCode = 0;
  5. initialiseCore();
  6. Arena *arena = arenaAlloc(Megabytes(64));
  7. list<string> args = getArgs(arena, argc, argv);
  8. {
  9. log("teststr: %S :teststrend", strlit("teststring hahaha"));
  10. };
  11. return statusCode;
  12. }