Files
ecgsyn.js/ecgsyn.cpp
2024-11-09 21:57:08 -06:00

10 lines
97 B
C++

#include <cstdio>
extern "C" {
int ecgsyn() {
std::printf("hello world\n");
return 69;
}
}