diff options
| author | Eddy Pedroni <epedroni@pm.me> | 2025-07-21 18:57:53 +0200 |
|---|---|---|
| committer | Eddy Pedroni <epedroni@pm.me> | 2025-07-21 18:57:53 +0200 |
| commit | f0835be9ffcae8e5c74c8fc6a0da2f7bc49343ac (patch) | |
| tree | fb7a6f34e9068b48b67c039e7fcead23e361da75 /daemon/src | |
Initial commit, daemon hello world
Diffstat (limited to 'daemon/src')
| -rw-r--r-- | daemon/src/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/daemon/src/main.cpp b/daemon/src/main.cpp new file mode 100644 index 0000000..68d0a96 --- /dev/null +++ b/daemon/src/main.cpp @@ -0,0 +1,8 @@ +#include <iostream> +#include <rtmidi/RtMidi.h> +#include "concurrentqueue/blockingconcurrentqueue.h" + +int main() +{ + std::cout << "Hello, world\n"; +} |
