feat: dotalib

This commit is contained in:
2021-01-10 18:21:01 +08:00
parent 9dc7182b86
commit 58ea520a63
4 changed files with 39 additions and 4 deletions

View File

@@ -1,5 +1,9 @@
#include <stdio.h>
#include "dotalib.h"
int main(int argc, char** argv) {
print_hello_world();
println("hello world");
char* s = get_str_mut();
printf("Get: %s\n", s);
free(s);
}