hello world

This commit is contained in:
Sébastien Bourdeauducq 2024-12-26 11:48:03 +08:00
commit 25936ab2df
2 changed files with 13 additions and 0 deletions

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
PROG= sndlock
SRCS= sndlock.cpp
BINDIR= /usr/local/bin
NOMAN= 1
.include <bsd.prog.mk>

6
sndlock.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}