blob: c1750ad692d9616abaf096cf1a5613f401c349a6 [file] [log] [blame]
#include <stdio.h>
double fortran(void);
int main(void) {
printf("FORTRAN gave us this number: %lf.\n", fortran());
return 0;
}