|
|
|
|
|
by WalterBright
1387 days ago
|
|
With the D programming language, to interface with C's stdio.h: import stdio;
void main() { printf("hello from D!\n"); }
is all that's necessary, as D has a built-in C compiler that reads stdio.h, compiles it, and presents its interface to the D code. |
|
I hate to compare and contrast but Rust comes to mind as one of the latter, probably because it has a somewhat more intensive and extensive RFC process for adding new features.