commit 25936ab2df90aada25499dfb372886ce212cb8c4 Author: Sébastien Bourdeauducq Date: Thu Dec 26 11:48:03 2024 +0800 hello world 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; +}