Files
2021-01-10 18:21:01 +08:00

10 lines
167 B
C

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