hello world!
This commit is contained in:
parent
ba63e99512
commit
f4e9293e94
3 changed files with 21 additions and 1 deletions
8
Makefile
Normal file
8
Makefile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
BINARY=renga
|
||||||
|
CPP=g++
|
||||||
|
|
||||||
|
all: build
|
||||||
|
|
||||||
|
build:
|
||||||
|
$(CPP) src/main.cpp -o $(BINARY)
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
# renga
|
# renga
|
||||||
|
|
||||||
Renga, a XMPP client designed for Haiku
|
Renga, a XMPP client designed for Haiku
|
||||||
|
|
||||||
|
## todo
|
||||||
|
|
||||||
|
- [ ] make haiku-os compatible
|
||||||
|
- [ ] everything else
|
||||||
|
|
7
src/main.cpp
Normal file
7
src/main.cpp
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#include "iostream"
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::cout << "imagine a world...\n";
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue