Do you think Rust will ever have native support for C? That is to say, do you believe that Rust will ever Allow native calling of C code and receiving of output from C code?
Oh it can, but in that Foreign Function Interface kinda way. I'm talking more like how Clojure can natively call Java code (not a fair comparison as Clojure is read by a Reader that interpolates it into something the JVM can handle and Rust compiles natively and not to something that a compiler like GCC can handle, but still).