tinycc
i've been _trying_ to learn C. tinycc, beside being tiny, it compiles very quickly, allowing you to do cool things like script in C
./file.c arg_1
which makes it easier for those c-fu to guess and check.
it also allows such nice things as c in python
which is like pyinline, but uses ctypes and doesn't need write access.
#!/usr/bin/tcc -runand then run as
#include
int main(int argc, char *argv[]) {
printf("Hello World %s, %s", argv[0], argv[1]);
return 0;
}
./file.c arg_1
which makes it easier for those c-fu to guess and check.
it also allows such nice things as c in python
which is like pyinline, but uses ctypes and doesn't need write access.
Comments