Skip to content

Instantly share code, notes, and snippets.

View MartinBeseda's full-sized avatar

Martin Beseda MartinBeseda

View GitHub Profile
@Luthaf
Luthaf / Foo.cpp
Last active September 18, 2023 22:40
Calling C++ from Fortran
#include "Foo.hpp"
#include <iostream>
using namespace std;
Foo::Foo(int _a, int _b): a(_a), b(_b){
cout << "C++ side, constructor" << endl;
}
Foo::~Foo(){