Today I heard about the D programming and that it is compatible to C code. Nevertheless I haven\'t found any information on whether it is possible to use C libraries like GTK or
D code can be linked with C object files, and can interact with C dlls, but you'll need to generate a D module from the C header file you want to use. The official D website has a guide for doing that very thing.