Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 line
273 B

  1. #include <stdio.h>
  2. #include "core.c"
  3. int main(int argc, char **argv) {
  4. initialiseDjStdCore();
  5. Arena *arena = arenaAlloc(Megabytes(64));
  6. StringList args = getArgs(arena, argc, argv);
  7. print("%S", strSplit(arena, s("-"), s("hallo-world")));
  8. return 0;
  9. }