mirror of https://github.com/agdsn/xerxes.git
initial import.
This commit is contained in:
commit
3250434bb7
|
|
@ -0,0 +1,5 @@
|
||||||
|
OBJECTS=xerxes.cxx
|
||||||
|
BIN=xerxes
|
||||||
|
|
||||||
|
$(BIN): $(OBJECTS)
|
||||||
|
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
/**
|
||||||
|
* xerxes - mysql proxying
|
||||||
|
* ``Why do you persist in your loneliness?'' --Xerxes
|
||||||
|
* (c) 2008
|
||||||
|
* Jan Losinski <losinshi@wh2.tu-dresden.de>
|
||||||
|
* Maximilian Marx <mmarx@wh2.tu-dresden.de>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
std::cout << "Hello, World!";
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue