From 25936ab2df90aada25499dfb372886ce212cb8c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Thu, 26 Dec 2024 11:48:03 +0800 Subject: [PATCH] hello world --- Makefile | 7 +++++++ sndlock.cpp | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 Makefile create mode 100644 sndlock.cpp diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e821ce4 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +PROG= sndlock +SRCS= sndlock.cpp + +BINDIR= /usr/local/bin +NOMAN= 1 + +.include diff --git a/sndlock.cpp b/sndlock.cpp new file mode 100644 index 0000000..ff68290 --- /dev/null +++ b/sndlock.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World!" << std::endl; + return 0; +}