This commit is contained in:
2024-11-09 21:57:08 -06:00
parent a1790b8977
commit d5e0b2ad79
17 changed files with 3696 additions and 20 deletions

9
ecgsyn.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <cstdio>
extern "C" {
int ecgsyn() {
std::printf("hello world\n");
return 69;
}
}