summaryrefslogtreecommitdiff
path: root/test cases/fortran/9 cpp/main.cpp
blob: a3eeaeca762279159aeb1fa09de5ba450887e067 (plain)
1
2
3
4
5
6
7
8
#include <iostream>

extern "C" double fortran();

int main() {
    std::cout << "FORTRAN gave us this number: " << fortran() << '\n';
    return 0;
}