hello world
This commit is contained in:
commit
25936ab2df
7
Makefile
Normal file
7
Makefile
Normal 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
6
sndlock.cpp
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::cout << "Hello World!" << std::endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user